diff options
author | Tim Orling <ticotimo@gmail.com> | 2024-02-19 20:10:24 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-02-19 23:22:24 -0800 |
commit | 94c20e1ef4d7bd1dde1003cde25b9adb1ccc8310 (patch) | |
tree | 660b031c78987c950276b88e25731fff42588c49 | |
parent | 16935136bd80c1ce832a86bd1972d2e5d4c061d6 (diff) | |
download | meta-openembedded-94c20e1ef4d7bd1dde1003cde25b9adb1ccc8310.tar.gz |
meta-python: drop ${PYTHON_PN}
python 2 is long unsupported, so we no longer need this variable.
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
231 files changed, 846 insertions, 846 deletions
diff --git a/meta-python/classes/distutils3-base.bbclass b/meta-python/classes/distutils3-base.bbclass index 850c535bb..4f13ea6fe 100644 --- a/meta-python/classes/distutils3-base.bbclass +++ b/meta-python/classes/distutils3-base.bbclass | |||
@@ -1,6 +1,6 @@ | |||
1 | DEPENDS:append:class-target = " ${PYTHON_PN}-native ${PYTHON_PN}" | 1 | DEPENDS:append:class-target = " python3-native python3" |
2 | DEPENDS:append:class-nativesdk = " ${PYTHON_PN}-native ${PYTHON_PN}" | 2 | DEPENDS:append:class-nativesdk = " python3-native python3" |
3 | RDEPENDS:${PN} += "${@['', '${PYTHON_PN}-core']['${CLASSOVERRIDE}' == 'class-target']}" | 3 | RDEPENDS:${PN} += "${@['', 'python3-core']['${CLASSOVERRIDE}' == 'class-target']}" |
4 | 4 | ||
5 | inherit distutils-common-base python3native python3targetconfig | 5 | inherit distutils-common-base python3native python3targetconfig |
6 | 6 | ||
diff --git a/meta-python/classes/distutils3.bbclass b/meta-python/classes/distutils3.bbclass index a6d8e8763..909415efa 100644 --- a/meta-python/classes/distutils3.bbclass +++ b/meta-python/classes/distutils3.bbclass | |||
@@ -27,9 +27,9 @@ distutils3_do_compile() { | |||
27 | NO_FETCH_BUILD=1 \ | 27 | NO_FETCH_BUILD=1 \ |
28 | STAGING_INCDIR=${STAGING_INCDIR} \ | 28 | STAGING_INCDIR=${STAGING_INCDIR} \ |
29 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | 29 | STAGING_LIBDIR=${STAGING_LIBDIR} \ |
30 | ${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN} setup.py \ | 30 | ${STAGING_BINDIR_NATIVE}/python3-native/python3 setup.py \ |
31 | build --build-base=${B} ${DISTUTILS_BUILD_ARGS} || \ | 31 | build --build-base=${B} ${DISTUTILS_BUILD_ARGS} || \ |
32 | bbfatal_log "'${PYTHON_PN} setup.py build ${DISTUTILS_BUILD_ARGS}' execution failed." | 32 | bbfatal_log "'python3 setup.py build ${DISTUTILS_BUILD_ARGS}' execution failed." |
33 | } | 33 | } |
34 | distutils3_do_compile[vardepsexclude] = "MACHINE" | 34 | distutils3_do_compile[vardepsexclude] = "MACHINE" |
35 | 35 | ||
@@ -39,9 +39,9 @@ distutils3_do_install() { | |||
39 | STAGING_INCDIR=${STAGING_INCDIR} \ | 39 | STAGING_INCDIR=${STAGING_INCDIR} \ |
40 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | 40 | STAGING_LIBDIR=${STAGING_LIBDIR} \ |
41 | PYTHONPATH=${D}${PYTHON_SITEPACKAGES_DIR} \ | 41 | PYTHONPATH=${D}${PYTHON_SITEPACKAGES_DIR} \ |
42 | ${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN} setup.py \ | 42 | ${STAGING_BINDIR_NATIVE}/python3-native/python3 setup.py \ |
43 | build --build-base=${B} install --skip-build ${DISTUTILS_INSTALL_ARGS} || \ | 43 | build --build-base=${B} install --skip-build ${DISTUTILS_INSTALL_ARGS} || \ |
44 | bbfatal_log "'${PYTHON_PN} setup.py install ${DISTUTILS_INSTALL_ARGS}' execution failed." | 44 | bbfatal_log "'python3 setup.py install ${DISTUTILS_INSTALL_ARGS}' execution failed." |
45 | 45 | ||
46 | # support filenames with *spaces* | 46 | # support filenames with *spaces* |
47 | find ${D} -name "*.py" -exec grep -q ${D} {} \; \ | 47 | find ${D} -name "*.py" -exec grep -q ${D} {} \; \ |
diff --git a/meta-python/recipes-connectivity/python-h2/python3-h2_4.1.0.bb b/meta-python/recipes-connectivity/python-h2/python3-h2_4.1.0.bb index c2d58846d..6b3ce2537 100644 --- a/meta-python/recipes-connectivity/python-h2/python3-h2_4.1.0.bb +++ b/meta-python/recipes-connectivity/python-h2/python3-h2_4.1.0.bb | |||
@@ -8,4 +8,4 @@ SRC_URI[sha256sum] = "a83aca08fbe7aacb79fec788c9c0bac936343560ed9ec18b82a13a12c2 | |||
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += "${PYTHON_PN}-hpack ${PYTHON_PN}-hyperframe" | 11 | RDEPENDS:${PN} += "python3-hpack python3-hyperframe" |
diff --git a/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.82.bb b/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.82.bb index a7ed75f01..c49e67c91 100644 --- a/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.82.bb +++ b/meta-python/recipes-connectivity/python-pyro4/python3-pyro4_4.82.bb | |||
@@ -9,7 +9,7 @@ PYPI_PACKAGE = "Pyro4" | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-logging \ | 12 | python3-logging \ |
13 | ${PYTHON_PN}-serpent \ | 13 | python3-serpent \ |
14 | ${PYTHON_PN}-threading \ | 14 | python3-threading \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python-jsonref/python3-jsonref_1.1.0.bb b/meta-python/recipes-devtools/python-jsonref/python3-jsonref_1.1.0.bb index fae1da268..4272fc4f2 100644 --- a/meta-python/recipes-devtools/python-jsonref/python3-jsonref_1.1.0.bb +++ b/meta-python/recipes-devtools/python-jsonref/python3-jsonref_1.1.0.bb | |||
@@ -12,12 +12,12 @@ inherit pypi python_setuptools_build_meta | |||
12 | BBCLASSEXTEND = "native nativesdk" | 12 | BBCLASSEXTEND = "native nativesdk" |
13 | 13 | ||
14 | DEPENDS += " \ | 14 | DEPENDS += " \ |
15 | ${PYTHON_PN}-pdm-native \ | 15 | python3-pdm-native \ |
16 | ${PYTHON_PN}-pdm-backend-native \ | 16 | python3-pdm-backend-native \ |
17 | " | 17 | " |
18 | 18 | ||
19 | RDEPENDS:${PN} += " \ | 19 | RDEPENDS:${PN} += " \ |
20 | ${PYTHON_PN}-core \ | 20 | python3-core \ |
21 | ${PYTHON_PN}-json \ | 21 | python3-json \ |
22 | ${PYTHON_PN}-netclient \ | 22 | python3-netclient \ |
23 | " | 23 | " |
diff --git a/meta-python/recipes-devtools/python/pyrtm_0.4.2.bb b/meta-python/recipes-devtools/python/pyrtm_0.4.2.bb index 940758646..ed4e58850 100644 --- a/meta-python/recipes-devtools/python/pyrtm_0.4.2.bb +++ b/meta-python/recipes-devtools/python/pyrtm_0.4.2.bb | |||
@@ -20,9 +20,9 @@ FILES:${PN}-tests += " \ | |||
20 | " | 20 | " |
21 | 21 | ||
22 | RDEPENDS:${PN} += "\ | 22 | RDEPENDS:${PN} += "\ |
23 | ${PYTHON_PN}-json \ | 23 | python3-json \ |
24 | ${PYTHON_PN}-logging \ | 24 | python3-logging \ |
25 | ${PYTHON_PN}-netclient \ | 25 | python3-netclient \ |
26 | " | 26 | " |
27 | 27 | ||
28 | RDEPENDS:${PN}-samples += " \ | 28 | RDEPENDS:${PN}-samples += " \ |
@@ -31,5 +31,5 @@ RDEPENDS:${PN}-samples += " \ | |||
31 | 31 | ||
32 | RDEPENDS:${PN}-tests += " \ | 32 | RDEPENDS:${PN}-tests += " \ |
33 | ${PN} \ | 33 | ${PN} \ |
34 | ${PYTHON_PN}-unittest \ | 34 | python3-unittest \ |
35 | " | 35 | " |
diff --git a/meta-python/recipes-devtools/python/python-django-south.inc b/meta-python/recipes-devtools/python/python-django-south.inc index 4a376391a..28eb84c56 100644 --- a/meta-python/recipes-devtools/python/python-django-south.inc +++ b/meta-python/recipes-devtools/python/python-django-south.inc | |||
@@ -13,5 +13,5 @@ inherit pypi | |||
13 | BBCLASSEXTEND = "native nativesdk" | 13 | BBCLASSEXTEND = "native nativesdk" |
14 | 14 | ||
15 | RDEPENDS:${PN} += "\ | 15 | RDEPENDS:${PN} += "\ |
16 | ${PYTHON_PN}-django \ | 16 | python3-django \ |
17 | " | 17 | " |
diff --git a/meta-python/recipes-devtools/python/python-django.inc b/meta-python/recipes-devtools/python/python-django.inc index 11d5e6301..d9ab3fd21 100644 --- a/meta-python/recipes-devtools/python/python-django.inc +++ b/meta-python/recipes-devtools/python/python-django.inc | |||
@@ -13,21 +13,21 @@ FILES:${PN} += "${datadir}/django" | |||
13 | BBCLASSEXTEND = "native nativesdk" | 13 | BBCLASSEXTEND = "native nativesdk" |
14 | 14 | ||
15 | RDEPENDS:${PN} += "\ | 15 | RDEPENDS:${PN} += "\ |
16 | ${PYTHON_PN}-compression \ | 16 | python3-compression \ |
17 | ${PYTHON_PN}-ctypes \ | 17 | python3-ctypes \ |
18 | ${PYTHON_PN}-datetime \ | 18 | python3-datetime \ |
19 | ${PYTHON_PN}-email \ | 19 | python3-email \ |
20 | ${PYTHON_PN}-html \ | 20 | python3-html \ |
21 | ${PYTHON_PN}-json \ | 21 | python3-json \ |
22 | ${PYTHON_PN}-logging \ | 22 | python3-logging \ |
23 | ${PYTHON_PN}-multiprocessing \ | 23 | python3-multiprocessing \ |
24 | ${PYTHON_PN}-netserver \ | 24 | python3-netserver \ |
25 | ${PYTHON_PN}-numbers \ | 25 | python3-numbers \ |
26 | ${PYTHON_PN}-pkgutil \ | 26 | python3-pkgutil \ |
27 | ${PYTHON_PN}-pytz \ | 27 | python3-pytz \ |
28 | ${PYTHON_PN}-threading \ | 28 | python3-threading \ |
29 | ${PYTHON_PN}-unixadmin \ | 29 | python3-unixadmin \ |
30 | ${PYTHON_PN}-xml \ | 30 | python3-xml \ |
31 | " | 31 | " |
32 | 32 | ||
33 | CVE_PRODUCT = "django" | 33 | CVE_PRODUCT = "django" |
diff --git a/meta-python/recipes-devtools/python/python-flask-bootstrap.inc b/meta-python/recipes-devtools/python/python-flask-bootstrap.inc index 1a729c975..24c76ce94 100644 --- a/meta-python/recipes-devtools/python/python-flask-bootstrap.inc +++ b/meta-python/recipes-devtools/python/python-flask-bootstrap.inc | |||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "cb08ed940183f6343a64e465e83b3a3f13c53e1baabb8d72b5da4545ef | |||
8 | PYPI_PACKAGE = "Flask-Bootstrap" | 8 | PYPI_PACKAGE = "Flask-Bootstrap" |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-dominate \ | 11 | python3-dominate \ |
12 | ${PYTHON_PN}-flask \ | 12 | python3-flask \ |
13 | ${PYTHON_PN}-visitor \ | 13 | python3-visitor \ |
14 | " | 14 | " |
diff --git a/meta-python/recipes-devtools/python/python-flask-xstatic.inc b/meta-python/recipes-devtools/python/python-flask-xstatic.inc index 5f4e0858f..8434d2610 100644 --- a/meta-python/recipes-devtools/python/python-flask-xstatic.inc +++ b/meta-python/recipes-devtools/python/python-flask-xstatic.inc | |||
@@ -11,6 +11,6 @@ SRC_URI += "file://remove-pip-requires.patch" | |||
11 | PYPI_PACKAGE = "Flask-XStatic" | 11 | PYPI_PACKAGE = "Flask-XStatic" |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-flask \ | 14 | python3-flask \ |
15 | ${PYTHON_PN}-xstatic \ | 15 | python3-xstatic \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-aenum_3.1.15.bb b/meta-python/recipes-devtools/python/python3-aenum_3.1.15.bb index f9fdb6aeb..3769be0d5 100644 --- a/meta-python/recipes-devtools/python/python3-aenum_3.1.15.bb +++ b/meta-python/recipes-devtools/python/python3-aenum_3.1.15.bb | |||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "8cbd76cd18c4f870ff39b24284d3ea028fbe8731a58df3aa581e434c57 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-pprint \ | 11 | python3-pprint \ |
12 | " | 12 | " |
13 | 13 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-aiodns_3.1.1.bb b/meta-python/recipes-devtools/python/python3-aiodns_3.1.1.bb index 02a0b4ea2..ec7d62ee2 100644 --- a/meta-python/recipes-devtools/python/python3-aiodns_3.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-aiodns_3.1.1.bb | |||
@@ -11,8 +11,8 @@ PYPI_PACKAGE = "aiodns" | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN} += " \ | 13 | RDEPENDS:${PN} += " \ |
14 | ${PYTHON_PN}-asyncio \ | 14 | python3-asyncio \ |
15 | ${PYTHON_PN}-pycares \ | 15 | python3-pycares \ |
16 | " | 16 | " |
17 | 17 | ||
18 | BBCLASSEXTEND = "native nativesdk" | 18 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-aiofiles_23.2.1.bb b/meta-python/recipes-devtools/python/python3-aiofiles_23.2.1.bb index 7992b00f3..73dc17423 100644 --- a/meta-python/recipes-devtools/python/python3-aiofiles_23.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-aiofiles_23.2.1.bb | |||
@@ -11,5 +11,5 @@ PYPI_PACKAGE = "aiofiles" | |||
11 | inherit pypi python_hatchling | 11 | inherit pypi python_hatchling |
12 | 12 | ||
13 | RDEPENDS:${PN} = "\ | 13 | RDEPENDS:${PN} = "\ |
14 | ${PYTHON_PN}-asyncio \ | 14 | python3-asyncio \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-aiohttp-jinja2_1.6.bb b/meta-python/recipes-devtools/python/python3-aiohttp-jinja2_1.6.bb index 694f577b0..df4a0adca 100644 --- a/meta-python/recipes-devtools/python/python3-aiohttp-jinja2_1.6.bb +++ b/meta-python/recipes-devtools/python/python3-aiohttp-jinja2_1.6.bb | |||
@@ -8,6 +8,6 @@ SRC_URI[sha256sum] = "a3a7ff5264e5bca52e8ae547bbfd0761b72495230d438d05b6c0915be6 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-jinja2 \ | 11 | python3-jinja2 \ |
12 | ${PYTHON_PN}-aiohttp \ | 12 | python3-aiohttp \ |
13 | " | 13 | " |
diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.9.3.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.9.3.bb index 99fb84cd5..2cdd352e5 100644 --- a/meta-python/recipes-devtools/python/python3-aiohttp_3.9.3.bb +++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.9.3.bb | |||
@@ -10,11 +10,11 @@ PYPI_PACKAGE = "aiohttp" | |||
10 | inherit python_setuptools_build_meta pypi | 10 | inherit python_setuptools_build_meta pypi |
11 | 11 | ||
12 | RDEPENDS:${PN} = "\ | 12 | RDEPENDS:${PN} = "\ |
13 | ${PYTHON_PN}-aiohappyeyeballs \ | 13 | python3-aiohappyeyeballs \ |
14 | ${PYTHON_PN}-aiosignal \ | 14 | python3-aiosignal \ |
15 | ${PYTHON_PN}-async-timeout \ | 15 | python3-async-timeout \ |
16 | ${PYTHON_PN}-frozenlist \ | 16 | python3-frozenlist \ |
17 | ${PYTHON_PN}-multidict \ | 17 | python3-multidict \ |
18 | ${PYTHON_PN}-yarl \ | 18 | python3-yarl \ |
19 | ${PYTHON_PN}-aiodns \ | 19 | python3-aiodns \ |
20 | " | 20 | " |
diff --git a/meta-python/recipes-devtools/python/python3-aiohue_4.7.1.bb b/meta-python/recipes-devtools/python/python3-aiohue_4.7.1.bb index 4b5edffdb..438c771db 100644 --- a/meta-python/recipes-devtools/python/python3-aiohue_4.7.1.bb +++ b/meta-python/recipes-devtools/python/python3-aiohue_4.7.1.bb | |||
@@ -9,8 +9,8 @@ SRC_URI[sha256sum] = "29b5e5ae05938cac195b1969e70bd6ad4e4e2e105d0e565849803d2a99 | |||
9 | inherit pypi python_setuptools_build_meta | 9 | inherit pypi python_setuptools_build_meta |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-aiohttp \ | 12 | python3-aiohttp \ |
13 | ${PYTHON_PN}-asyncio-throttle \ | 13 | python3-asyncio-throttle \ |
14 | ${PYTHON_PN}-profile \ | 14 | python3-profile \ |
15 | ${PYTHON_PN}-awesomeversion \ | 15 | python3-awesomeversion \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-aiosignal_1.3.1.bb b/meta-python/recipes-devtools/python/python3-aiosignal_1.3.1.bb index 1463287d0..fd4ec767c 100644 --- a/meta-python/recipes-devtools/python/python3-aiosignal_1.3.1.bb +++ b/meta-python/recipes-devtools/python/python3-aiosignal_1.3.1.bb | |||
@@ -10,5 +10,5 @@ inherit pypi setuptools3 | |||
10 | BBCLASSEXTEND = "native nativesdk" | 10 | BBCLASSEXTEND = "native nativesdk" |
11 | 11 | ||
12 | RDEPENDS:${PN} = "\ | 12 | RDEPENDS:${PN} = "\ |
13 | ${PYTHON_PN}-frozenlist \ | 13 | python3-frozenlist \ |
14 | " | 14 | " |
diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.13.1.bb b/meta-python/recipes-devtools/python/python3-alembic_1.13.1.bb index 2a9ac2c5d..c4853c443 100644 --- a/meta-python/recipes-devtools/python/python3-alembic_1.13.1.bb +++ b/meta-python/recipes-devtools/python/python3-alembic_1.13.1.bb | |||
@@ -9,11 +9,11 @@ SRC_URI[sha256sum] = "4932c8558bf68f2ee92b9bbcb8218671c627064d5b08939437af6d77dc | |||
9 | PYPI_PACKAGE = "alembic" | 9 | PYPI_PACKAGE = "alembic" |
10 | 10 | ||
11 | RDEPENDS:${PN} += "\ | 11 | RDEPENDS:${PN} += "\ |
12 | ${PYTHON_PN}-dateutil \ | 12 | python3-dateutil \ |
13 | ${PYTHON_PN}-editor \ | 13 | python3-editor \ |
14 | ${PYTHON_PN}-mako \ | 14 | python3-mako \ |
15 | ${PYTHON_PN}-sqlalchemy \ | 15 | python3-sqlalchemy \ |
16 | ${PYTHON_PN}-misc \ | 16 | python3-misc \ |
17 | " | 17 | " |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb b/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb index e419fdcf1..6af898917 100644 --- a/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb +++ b/meta-python/recipes-devtools/python/python3-ansi2html_1.9.1.bb | |||
@@ -10,10 +10,10 @@ SRC_URI[sha256sum] = "5c6837a13ecc1903aab7a545353312049dfedfe5105362ad3a8d9d2078 | |||
10 | inherit pypi python_setuptools_build_meta | 10 | inherit pypi python_setuptools_build_meta |
11 | 11 | ||
12 | DEPENDS += " \ | 12 | DEPENDS += " \ |
13 | ${PYTHON_PN}-setuptools-scm-native \ | 13 | python3-setuptools-scm-native \ |
14 | " | 14 | " |
15 | 15 | ||
16 | RDEPENDS:${PN} = " \ | 16 | RDEPENDS:${PN} = " \ |
17 | ${PYTHON_PN}-six \ | 17 | python3-six \ |
18 | ${PYTHON_PN}-compression \ | 18 | python3-compression \ |
19 | " | 19 | " |
diff --git a/meta-python/recipes-devtools/python/python3-argcomplete_3.2.2.bb b/meta-python/recipes-devtools/python/python3-argcomplete_3.2.2.bb index fffecf521..90560fabe 100644 --- a/meta-python/recipes-devtools/python/python3-argcomplete_3.2.2.bb +++ b/meta-python/recipes-devtools/python/python3-argcomplete_3.2.2.bb | |||
@@ -10,8 +10,8 @@ PYPI_PACKAGE = "argcomplete" | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += "\ | 12 | RDEPENDS:${PN} += "\ |
13 | ${PYTHON_PN}-core \ | 13 | python3-core \ |
14 | ${PYTHON_PN}-io \ | 14 | python3-io \ |
15 | " | 15 | " |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" | 17 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-arpeggio_2.0.2.bb b/meta-python/recipes-devtools/python/python3-arpeggio_2.0.2.bb index 1a48a88c2..3130e2cb9 100644 --- a/meta-python/recipes-devtools/python/python3-arpeggio_2.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-arpeggio_2.0.2.bb | |||
@@ -10,8 +10,8 @@ inherit pypi setuptools3 | |||
10 | 10 | ||
11 | # setup.py of Arpeggio needs this. | 11 | # setup.py of Arpeggio needs this. |
12 | DEPENDS += "\ | 12 | DEPENDS += "\ |
13 | ${PYTHON_PN}-pytest-runner-native \ | 13 | python3-pytest-runner-native \ |
14 | ${PYTHON_PN}-wheel-native \ | 14 | python3-wheel-native \ |
15 | " | 15 | " |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" | 17 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-arrow_1.3.0.bb b/meta-python/recipes-devtools/python/python3-arrow_1.3.0.bb index ec49d04eb..90ba5de96 100644 --- a/meta-python/recipes-devtools/python/python3-arrow_1.3.0.bb +++ b/meta-python/recipes-devtools/python/python3-arrow_1.3.0.bb | |||
@@ -9,5 +9,5 @@ SRC_URI[sha256sum] = "d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4 | |||
9 | inherit setuptools3 pypi | 9 | inherit setuptools3 pypi |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-dateutil \ | 12 | python3-dateutil \ |
13 | " | 13 | " |
diff --git a/meta-python/recipes-devtools/python/python3-astroid_3.0.3.bb b/meta-python/recipes-devtools/python/python3-astroid_3.0.3.bb index 1b8787215..b02b15113 100644 --- a/meta-python/recipes-devtools/python/python3-astroid_3.0.3.bb +++ b/meta-python/recipes-devtools/python/python3-astroid_3.0.3.bb | |||
@@ -9,8 +9,8 @@ SRC_URI[sha256sum] = "4148645659b08b70d72460ed1921158027a9e53ae8b7234149b1400edd | |||
9 | inherit pypi python_setuptools_build_meta | 9 | inherit pypi python_setuptools_build_meta |
10 | 10 | ||
11 | DEPENDS += "\ | 11 | DEPENDS += "\ |
12 | ${PYTHON_PN}-pytest-runner-native \ | 12 | python3-pytest-runner-native \ |
13 | ${PYTHON_PN}-wheel-native \ | 13 | python3-wheel-native \ |
14 | " | 14 | " |
15 | 15 | ||
16 | PACKAGES =+ "${PN}-tests" | 16 | PACKAGES =+ "${PN}-tests" |
@@ -21,17 +21,17 @@ FILES:${PN}-tests += " \ | |||
21 | " | 21 | " |
22 | 22 | ||
23 | RDEPENDS:${PN}:class-target += "\ | 23 | RDEPENDS:${PN}:class-target += "\ |
24 | ${PYTHON_PN}-lazy-object-proxy \ | 24 | python3-lazy-object-proxy \ |
25 | ${PYTHON_PN}-logging \ | 25 | python3-logging \ |
26 | ${PYTHON_PN}-six \ | 26 | python3-six \ |
27 | ${PYTHON_PN}-wrapt \ | 27 | python3-wrapt \ |
28 | ${PYTHON_PN}-setuptools \ | 28 | python3-setuptools \ |
29 | ${PYTHON_PN}-typing-extensions \ | 29 | python3-typing-extensions \ |
30 | " | 30 | " |
31 | 31 | ||
32 | RDEPENDS:${PN}-tests:class-target += "\ | 32 | RDEPENDS:${PN}-tests:class-target += "\ |
33 | ${PYTHON_PN}-unittest \ | 33 | python3-unittest \ |
34 | ${PYTHON_PN}-xml \ | 34 | python3-xml \ |
35 | " | 35 | " |
36 | 36 | ||
37 | BBCLASSEXTEND = "native nativesdk" | 37 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-asttokens_2.4.1.bb b/meta-python/recipes-devtools/python/python3-asttokens_2.4.1.bb index 5cc4291f7..dbb2fc0eb 100644 --- a/meta-python/recipes-devtools/python/python3-asttokens_2.4.1.bb +++ b/meta-python/recipes-devtools/python/python3-asttokens_2.4.1.bb | |||
@@ -12,7 +12,7 @@ SRC_URI[sha256sum] = "b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11 | |||
12 | DEPENDS += "python3-setuptools-scm-native" | 12 | DEPENDS += "python3-setuptools-scm-native" |
13 | 13 | ||
14 | RDEPENDS:${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | ${PYTHON_PN}-six \ | 15 | python3-six \ |
16 | " | 16 | " |
17 | 17 | ||
18 | BBCLASSEXTEND = "native" | 18 | BBCLASSEXTEND = "native" |
diff --git a/meta-python/recipes-devtools/python/python3-async-timeout_4.0.3.bb b/meta-python/recipes-devtools/python/python3-async-timeout_4.0.3.bb index c16dfd0bf..3d35780b6 100644 --- a/meta-python/recipes-devtools/python/python3-async-timeout_4.0.3.bb +++ b/meta-python/recipes-devtools/python/python3-async-timeout_4.0.3.bb | |||
@@ -14,5 +14,5 @@ PYPI_PACKAGE = "async-timeout" | |||
14 | inherit pypi python_setuptools_build_meta | 14 | inherit pypi python_setuptools_build_meta |
15 | 15 | ||
16 | RDEPENDS:${PN} = "\ | 16 | RDEPENDS:${PN} = "\ |
17 | ${PYTHON_PN}-asyncio \ | 17 | python3-asyncio \ |
18 | " | 18 | " |
diff --git a/meta-python/recipes-devtools/python/python3-autobahn_23.6.2.bb b/meta-python/recipes-devtools/python/python3-autobahn_23.6.2.bb index 42a8e0e7b..d9cc40b1b 100644 --- a/meta-python/recipes-devtools/python/python3-autobahn_23.6.2.bb +++ b/meta-python/recipes-devtools/python/python3-autobahn_23.6.2.bb | |||
@@ -8,14 +8,14 @@ SRC_URI[sha256sum] = "ec9421c52a2103364d1ef0468036e6019ee84f71721e86b36fe19ad696 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-twisted \ | 11 | python3-twisted \ |
12 | ${PYTHON_PN}-zopeinterface \ | 12 | python3-zopeinterface \ |
13 | ${PYTHON_PN}-py-ubjson \ | 13 | python3-py-ubjson \ |
14 | ${PYTHON_PN}-cbor2 \ | 14 | python3-cbor2 \ |
15 | ${PYTHON_PN}-u-msgpack-python \ | 15 | python3-u-msgpack-python \ |
16 | ${PYTHON_PN}-lz4 \ | 16 | python3-lz4 \ |
17 | ${PYTHON_PN}-snappy \ | 17 | python3-snappy \ |
18 | ${PYTHON_PN}-pyopenssl \ | 18 | python3-pyopenssl \ |
19 | ${PYTHON_PN}-txaio \ | 19 | python3-txaio \ |
20 | ${PYTHON_PN}-six \ | 20 | python3-six \ |
21 | " | 21 | " |
diff --git a/meta-python/recipes-devtools/python/python3-automat_22.10.0.bb b/meta-python/recipes-devtools/python/python3-automat_22.10.0.bb index bb29fbd4a..9e33fe783 100644 --- a/meta-python/recipes-devtools/python/python3-automat_22.10.0.bb +++ b/meta-python/recipes-devtools/python/python3-automat_22.10.0.bb | |||
@@ -5,12 +5,12 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=4ad213bcca81688e94593e5f60c87477" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "e56beb84edad19dcc11d30e8d9b895f75deeb5ef5e96b84a467066b3b84bb04e" | 6 | SRC_URI[sha256sum] = "e56beb84edad19dcc11d30e8d9b895f75deeb5ef5e96b84a467066b3b84bb04e" |
7 | 7 | ||
8 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 8 | DEPENDS += "python3-setuptools-scm-native" |
9 | 9 | ||
10 | PYPI_PACKAGE = "Automat" | 10 | PYPI_PACKAGE = "Automat" |
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-attrs \ | 14 | python3-attrs \ |
15 | ${PYTHON_PN}-six \ | 15 | python3-six \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-aws-iot-device-sdk-python_1.5.2.bb b/meta-python/recipes-devtools/python/python3-aws-iot-device-sdk-python_1.5.2.bb index 35d061f5e..bdadf7c77 100644 --- a/meta-python/recipes-devtools/python/python3-aws-iot-device-sdk-python_1.5.2.bb +++ b/meta-python/recipes-devtools/python/python3-aws-iot-device-sdk-python_1.5.2.bb | |||
@@ -27,15 +27,15 @@ do_install:append() { | |||
27 | PACKAGES =+ "${PN}-examples" | 27 | PACKAGES =+ "${PN}-examples" |
28 | 28 | ||
29 | RDEPENDS:${PN} += " \ | 29 | RDEPENDS:${PN} += " \ |
30 | ${PYTHON_PN}-crypt \ | 30 | python3-crypt \ |
31 | ${PYTHON_PN}-datetime \ | 31 | python3-datetime \ |
32 | ${PYTHON_PN}-io \ | 32 | python3-io \ |
33 | ${PYTHON_PN}-json \ | 33 | python3-json \ |
34 | ${PYTHON_PN}-logging \ | 34 | python3-logging \ |
35 | ${PYTHON_PN}-math \ | 35 | python3-math \ |
36 | ${PYTHON_PN}-netclient \ | 36 | python3-netclient \ |
37 | ${PYTHON_PN}-numbers \ | 37 | python3-numbers \ |
38 | ${PYTHON_PN}-threading \ | 38 | python3-threading \ |
39 | " | 39 | " |
40 | RDEPENDS:${PN}-examples += "${PN}" | 40 | RDEPENDS:${PN}-examples += "${PN}" |
41 | 41 | ||
diff --git a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.12.3.bb b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.12.3.bb index 628309877..14dedba92 100644 --- a/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.12.3.bb +++ b/meta-python/recipes-devtools/python/python3-beautifulsoup4_4.12.3.bb | |||
@@ -8,11 +8,11 @@ SRC_URI[sha256sum] = "74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7 | |||
8 | inherit pypi python_hatchling | 8 | inherit pypi python_hatchling |
9 | 9 | ||
10 | RDEPENDS:${PN} = "\ | 10 | RDEPENDS:${PN} = "\ |
11 | ${PYTHON_PN}-html5lib \ | 11 | python3-html5lib \ |
12 | ${PYTHON_PN}-lxml \ | 12 | python3-lxml \ |
13 | ${PYTHON_PN}-soupsieve \ | 13 | python3-soupsieve \ |
14 | ${PYTHON_PN}-html \ | 14 | python3-html \ |
15 | ${PYTHON_PN}-logging \ | 15 | python3-logging \ |
16 | " | 16 | " |
17 | 17 | ||
18 | BBCLASSEXTEND = "native nativesdk" | 18 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-behave_1.2.6.bb b/meta-python/recipes-devtools/python/python3-behave_1.2.6.bb index 1dcc7d218..da4f3047f 100644 --- a/meta-python/recipes-devtools/python/python3-behave_1.2.6.bb +++ b/meta-python/recipes-devtools/python/python3-behave_1.2.6.bb | |||
@@ -12,7 +12,7 @@ S = "${WORKDIR}/git" | |||
12 | inherit setuptools3 | 12 | inherit setuptools3 |
13 | 13 | ||
14 | RDEPENDS:${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | ${PYTHON_PN}-parse-type \ | 15 | python3-parse-type \ |
16 | ${PYTHON_PN}-setuptools \ | 16 | python3-setuptools \ |
17 | ${PYTHON_PN}-six \ | 17 | python3-six \ |
18 | " | 18 | " |
diff --git a/meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb b/meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb index 6fc2cf480..0777b6cff 100644 --- a/meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb +++ b/meta-python/recipes-devtools/python/python3-bitstring_4.1.4.bb | |||
@@ -10,10 +10,10 @@ PYPI_PACKAGE = "bitstring" | |||
10 | inherit pypi python_poetry_core | 10 | inherit pypi python_poetry_core |
11 | 11 | ||
12 | RDEPENDS:${PN} = "\ | 12 | RDEPENDS:${PN} = "\ |
13 | ${PYTHON_PN}-core \ | 13 | python3-core \ |
14 | ${PYTHON_PN}-io \ | 14 | python3-io \ |
15 | ${PYTHON_PN}-mmap \ | 15 | python3-mmap \ |
16 | ${PYTHON_PN}-numbers \ | 16 | python3-numbers \ |
17 | " | 17 | " |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb b/meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb index 0f639f33e..678f12b73 100644 --- a/meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-brotli_1.1.0.bb | |||
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "81de08ac11bcb85841e440c13611c00b67d3bf82698314928d0b676362 | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN} = "\ | 13 | RDEPENDS:${PN} = "\ |
14 | ${PYTHON_PN}-cffi \ | 14 | python3-cffi \ |
15 | " | 15 | " |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" | 17 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-cantools_39.4.4.bb b/meta-python/recipes-devtools/python/python3-cantools_39.4.4.bb index c8b8d1dfb..ebae6b63e 100644 --- a/meta-python/recipes-devtools/python/python3-cantools_39.4.4.bb +++ b/meta-python/recipes-devtools/python/python3-cantools_39.4.4.bb | |||
@@ -12,13 +12,13 @@ inherit pypi python_poetry_core | |||
12 | DEPENDS += "python3-setuptools-scm-native" | 12 | DEPENDS += "python3-setuptools-scm-native" |
13 | 13 | ||
14 | RDEPENDS:${PN} += "\ | 14 | RDEPENDS:${PN} += "\ |
15 | ${PYTHON_PN}-can \ | 15 | python3-can \ |
16 | ${PYTHON_PN}-bitstruct \ | 16 | python3-bitstruct \ |
17 | ${PYTHON_PN}-core \ | 17 | python3-core \ |
18 | ${PYTHON_PN}-textparser \ | 18 | python3-textparser \ |
19 | ${PYTHON_PN}-typing-extensions \ | 19 | python3-typing-extensions \ |
20 | ${PYTHON_PN}-diskcache \ | 20 | python3-diskcache \ |
21 | ${PYTHON_PN}-asyncio \ | 21 | python3-asyncio \ |
22 | " | 22 | " |
23 | 23 | ||
24 | CLEANBROKEN = "1" | 24 | CLEANBROKEN = "1" |
diff --git a/meta-python/recipes-devtools/python/python3-cassandra-driver_3.29.0.bb b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.29.0.bb index 8ec87fa26..b8565d17e 100644 --- a/meta-python/recipes-devtools/python/python3-cassandra-driver_3.29.0.bb +++ b/meta-python/recipes-devtools/python/python3-cassandra-driver_3.29.0.bb | |||
@@ -13,16 +13,16 @@ SRC_URI[sha256sum] = "0a34f9534356e5fd33af8cdda109d5e945b6335cb50399b267c46368c4 | |||
13 | inherit pypi setuptools3 | 13 | inherit pypi setuptools3 |
14 | 14 | ||
15 | RDEPENDS:${PN} += "\ | 15 | RDEPENDS:${PN} += "\ |
16 | ${PYTHON_PN}-cython \ | 16 | python3-cython \ |
17 | ${PYTHON_PN}-geomet \ | 17 | python3-geomet \ |
18 | ${PYTHON_PN}-json \ | 18 | python3-json \ |
19 | ${PYTHON_PN}-misc \ | 19 | python3-misc \ |
20 | ${PYTHON_PN}-multiprocessing \ | 20 | python3-multiprocessing \ |
21 | ${PYTHON_PN}-numbers \ | 21 | python3-numbers \ |
22 | ${PYTHON_PN}-six \ | 22 | python3-six \ |
23 | libevent \ | 23 | libevent \ |
24 | " | 24 | " |
25 | 25 | ||
26 | DEPENDS += "\ | 26 | DEPENDS += "\ |
27 | ${PYTHON_PN}-cython \ | 27 | python3-cython \ |
28 | " | 28 | " |
diff --git a/meta-python/recipes-devtools/python/python3-casttube_0.2.0.bb b/meta-python/recipes-devtools/python/python3-casttube_0.2.0.bb index 408dff87b..64948d2e9 100644 --- a/meta-python/recipes-devtools/python/python3-casttube_0.2.0.bb +++ b/meta-python/recipes-devtools/python/python3-casttube_0.2.0.bb | |||
@@ -9,5 +9,5 @@ SRC_URI[sha256sum] = "f25b3c634efe702896233690f7590e8d6311590910f18dbb763b90419d | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} = "\ | 11 | RDEPENDS:${PN} = "\ |
12 | ${PYTHON_PN}-requests \ | 12 | python3-requests \ |
13 | " | 13 | " |
diff --git a/meta-python/recipes-devtools/python/python3-charset-normalizer_3.3.2.bb b/meta-python/recipes-devtools/python/python3-charset-normalizer_3.3.2.bb index 666cb5dc3..0e6d62fc2 100644 --- a/meta-python/recipes-devtools/python/python3-charset-normalizer_3.3.2.bb +++ b/meta-python/recipes-devtools/python/python3-charset-normalizer_3.3.2.bb | |||
@@ -8,8 +8,8 @@ SRC_URI[sha256sum] = "f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-core \ | 11 | python3-core \ |
12 | ${PYTHON_PN}-logging \ | 12 | python3-logging \ |
13 | ${PYTHON_PN}-codecs \ | 13 | python3-codecs \ |
14 | ${PYTHON_PN}-json \ | 14 | python3-json \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-click-repl_0.3.0.bb b/meta-python/recipes-devtools/python/python3-click-repl_0.3.0.bb index 33e42cb3b..b773ed6b8 100644 --- a/meta-python/recipes-devtools/python/python3-click-repl_0.3.0.bb +++ b/meta-python/recipes-devtools/python/python3-click-repl_0.3.0.bb | |||
@@ -7,4 +7,4 @@ SRC_URI[sha256sum] = "17849c23dba3d667247dc4defe1757fff98694e90fe37474f3feebb69c | |||
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} = "${PYTHON_PN}-click ${PYTHON_PN}-prompt-toolkit" | 10 | RDEPENDS:${PN} = "python3-click python3-prompt-toolkit" |
diff --git a/meta-python/recipes-devtools/python/python3-cmd2_2.4.3.bb b/meta-python/recipes-devtools/python/python3-cmd2_2.4.3.bb index 29d790b94..3d37e8b3c 100644 --- a/meta-python/recipes-devtools/python/python3-cmd2_2.4.3.bb +++ b/meta-python/recipes-devtools/python/python3-cmd2_2.4.3.bb | |||
@@ -3,21 +3,21 @@ HOMEPAGE = "https://github.com/python-cmd2/cmd2" | |||
3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fad7740aa21780c8b9a214f5b320b4ad" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fad7740aa21780c8b9a214f5b320b4ad" |
5 | 5 | ||
6 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 6 | DEPENDS += "python3-setuptools-scm-native" |
7 | 7 | ||
8 | SRC_URI[sha256sum] = "71873c11f72bd19e2b1db578214716f0d4f7c8fa250093c601265a9a717dee52" | 8 | SRC_URI[sha256sum] = "71873c11f72bd19e2b1db578214716f0d4f7c8fa250093c601265a9a717dee52" |
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += "\ | 12 | RDEPENDS:${PN} += "\ |
13 | ${PYTHON_PN}-attrs \ | 13 | python3-attrs \ |
14 | ${PYTHON_PN}-colorama \ | 14 | python3-colorama \ |
15 | ${PYTHON_PN}-pyperclip \ | 15 | python3-pyperclip \ |
16 | ${PYTHON_PN}-wcwidth \ | 16 | python3-wcwidth \ |
17 | ${PYTHON_PN}-compression \ | 17 | python3-compression \ |
18 | ${PYTHON_PN}-pydoc \ | 18 | python3-pydoc \ |
19 | ${PYTHON_PN}-json \ | 19 | python3-json \ |
20 | ${PYTHON_PN}-numbers \ | 20 | python3-numbers \ |
21 | " | 21 | " |
22 | 22 | ||
23 | BBCLASSEXTEND = "native nativesdk" | 23 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-colorama_0.4.6.bb b/meta-python/recipes-devtools/python/python3-colorama_0.4.6.bb index 52e1e68b1..0f364c424 100644 --- a/meta-python/recipes-devtools/python/python3-colorama_0.4.6.bb +++ b/meta-python/recipes-devtools/python/python3-colorama_0.4.6.bb | |||
@@ -8,7 +8,7 @@ inherit pypi python_setuptools_build_meta | |||
8 | SRC_URI[sha256sum] = "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44" | 8 | SRC_URI[sha256sum] = "08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44" |
9 | 9 | ||
10 | DEPENDS += " \ | 10 | DEPENDS += " \ |
11 | ${PYTHON_PN}-hatchling-native \ | 11 | python3-hatchling-native \ |
12 | " | 12 | " |
13 | 13 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-colorclass_2.2.2.bb b/meta-python/recipes-devtools/python/python3-colorclass_2.2.2.bb index 00c2c4e92..ff72f4c2f 100644 --- a/meta-python/recipes-devtools/python/python3-colorclass_2.2.2.bb +++ b/meta-python/recipes-devtools/python/python3-colorclass_2.2.2.bb | |||
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "6d4fe287766166a98ca7bc6f6312daf04a0481b1eda43e7173484051c0 | |||
11 | PYPI_PACKAGE="colorclass" | 11 | PYPI_PACKAGE="colorclass" |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-ctypes \ | 14 | python3-ctypes \ |
15 | " | 15 | " |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" | 17 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.1.bb b/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.1.bb index d17ab8752..31f75eef6 100644 --- a/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-coloredlogs_15.0.1.bb | |||
@@ -13,7 +13,7 @@ do_install:append() { | |||
13 | } | 13 | } |
14 | 14 | ||
15 | RDEPENDS:${PN} += "\ | 15 | RDEPENDS:${PN} += "\ |
16 | ${PYTHON_PN}-humanfriendly \ | 16 | python3-humanfriendly \ |
17 | " | 17 | " |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-configargparse_1.7.bb b/meta-python/recipes-devtools/python/python3-configargparse_1.7.bb index 2eab701c8..1c49d891d 100644 --- a/meta-python/recipes-devtools/python/python3-configargparse_1.7.bb +++ b/meta-python/recipes-devtools/python/python3-configargparse_1.7.bb | |||
@@ -10,12 +10,12 @@ PYPI_PACKAGE = "ConfigArgParse" | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | PACKAGECONFIG ?= "yaml" | 12 | PACKAGECONFIG ?= "yaml" |
13 | PACKAGECONFIG[yaml] = ",,,${PYTHON_PN}-pyyaml" | 13 | PACKAGECONFIG[yaml] = ",,,python3-pyyaml" |
14 | 14 | ||
15 | RDEPENDS:${PN} += "\ | 15 | RDEPENDS:${PN} += "\ |
16 | ${PYTHON_PN}-core \ | 16 | python3-core \ |
17 | ${PYTHON_PN}-shell \ | 17 | python3-shell \ |
18 | ${PYTHON_PN}-json \ | 18 | python3-json \ |
19 | " | 19 | " |
20 | 20 | ||
21 | BBCLASSEXTEND = "native nativesdk" | 21 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-constantly_23.10.4.bb b/meta-python/recipes-devtools/python/python3-constantly_23.10.4.bb index cb6ca0a82..2df501aaa 100644 --- a/meta-python/recipes-devtools/python/python3-constantly_23.10.4.bb +++ b/meta-python/recipes-devtools/python/python3-constantly_23.10.4.bb | |||
@@ -7,6 +7,6 @@ SRC_URI[sha256sum] = "aa92b70a33e2ac0bb33cd745eb61776594dc48764b06c35e0efd050b7f | |||
7 | 7 | ||
8 | inherit pypi python_poetry_core | 8 | inherit pypi python_poetry_core |
9 | 9 | ||
10 | DEPENDS += "${PYTHON_PN}-versioneer-native" | 10 | DEPENDS += "python3-versioneer-native" |
11 | 11 | ||
12 | RDEPENDS:${PN} += "${PYTHON_PN}-json" | 12 | RDEPENDS:${PN} += "python3-json" |
diff --git a/meta-python/recipes-devtools/python/python3-crcmod_1.7.bb b/meta-python/recipes-devtools/python/python3-crcmod_1.7.bb index f8f168360..11d36b53e 100644 --- a/meta-python/recipes-devtools/python/python3-crcmod_1.7.bb +++ b/meta-python/recipes-devtools/python/python3-crcmod_1.7.bb | |||
@@ -9,6 +9,6 @@ SRC_URI[sha256sum] = "dc7051a0db5f2bd48665a990d3ec1cc305a466a77358ca4492826f41f2 | |||
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += "${PYTHON_PN}-unittest" | 12 | RDEPENDS:${PN} += "python3-unittest" |
13 | 13 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-cytoolz_0.12.3.bb b/meta-python/recipes-devtools/python/python3-cytoolz_0.12.3.bb index 6c35ad580..f9c9704d7 100644 --- a/meta-python/recipes-devtools/python/python3-cytoolz_0.12.3.bb +++ b/meta-python/recipes-devtools/python/python3-cytoolz_0.12.3.bb | |||
@@ -9,5 +9,5 @@ SRC_URI[sha256sum] = "4503dc59f4ced53a54643272c61dc305d1dbbfbd7d6bdf296948de9f34 | |||
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | DEPENDS += "${PYTHON_PN}-cython-native" | 12 | DEPENDS += "python3-cython-native" |
13 | RDEPENDS:${PN} += "${PYTHON_PN}-toolz" | 13 | RDEPENDS:${PN} += "python3-toolz" |
diff --git a/meta-python/recipes-devtools/python/python3-daemon_3.0.1.bb b/meta-python/recipes-devtools/python/python3-daemon_3.0.1.bb index 79507bdce..715d3bf12 100644 --- a/meta-python/recipes-devtools/python/python3-daemon_3.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-daemon_3.0.1.bb | |||
@@ -2,10 +2,10 @@ DESCRIPTION = "Library to implement a well-behaved Unix daemon process" | |||
2 | HOMEPAGE = "https://pagure.io/python-daemon/" | 2 | HOMEPAGE = "https://pagure.io/python-daemon/" |
3 | SECTION = "devel/python" | 3 | SECTION = "devel/python" |
4 | 4 | ||
5 | DEPENDS += "${PYTHON_PN}-docutils-native" | 5 | DEPENDS += "python3-docutils-native" |
6 | RDEPENDS:${PN} = "${PYTHON_PN}-docutils \ | 6 | RDEPENDS:${PN} = "python3-docutils \ |
7 | ${PYTHON_PN}-lockfile (>= 0.10) \ | 7 | python3-lockfile (>= 0.10) \ |
8 | ${PYTHON_PN}-resource \ | 8 | python3-resource \ |
9 | " | 9 | " |
10 | 10 | ||
11 | LICENSE = "Apache-2.0 & GPL-3.0-only" | 11 | LICENSE = "Apache-2.0 & GPL-3.0-only" |
diff --git a/meta-python/recipes-devtools/python/python3-dateutil_2.8.2.bb b/meta-python/recipes-devtools/python/python3-dateutil_2.8.2.bb index e281f0f28..c8e8a45c9 100644 --- a/meta-python/recipes-devtools/python/python3-dateutil_2.8.2.bb +++ b/meta-python/recipes-devtools/python/python3-dateutil_2.8.2.bb | |||
@@ -13,13 +13,13 @@ inherit pypi python_setuptools_build_meta | |||
13 | PACKAGES =+ "${PN}-zoneinfo" | 13 | PACKAGES =+ "${PN}-zoneinfo" |
14 | FILES:${PN}-zoneinfo = "${libdir}/${PYTHON_DIR}/site-packages/dateutil/zoneinfo" | 14 | FILES:${PN}-zoneinfo = "${libdir}/${PYTHON_DIR}/site-packages/dateutil/zoneinfo" |
15 | 15 | ||
16 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 16 | DEPENDS += "python3-setuptools-scm-native" |
17 | 17 | ||
18 | RDEPENDS:${PN} = "\ | 18 | RDEPENDS:${PN} = "\ |
19 | ${PYTHON_PN}-datetime \ | 19 | python3-datetime \ |
20 | ${PYTHON_PN}-numbers \ | 20 | python3-numbers \ |
21 | ${PYTHON_PN}-six \ | 21 | python3-six \ |
22 | ${PYTHON_PN}-stringold \ | 22 | python3-stringold \ |
23 | " | 23 | " |
24 | 24 | ||
25 | BBCLASSEXTEND = "native nativesdk" | 25 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-decorator_5.1.1.bb b/meta-python/recipes-devtools/python/python3-decorator_5.1.1.bb index c9c6f9a62..6d5cafb1d 100644 --- a/meta-python/recipes-devtools/python/python3-decorator_5.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-decorator_5.1.1.bb | |||
@@ -14,5 +14,5 @@ SRC_URI[sha256sum] = "637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253a | |||
14 | inherit pypi setuptools3 | 14 | inherit pypi setuptools3 |
15 | 15 | ||
16 | RDEPENDS:${PN} += "\ | 16 | RDEPENDS:${PN} += "\ |
17 | ${PYTHON_PN}-stringold \ | 17 | python3-stringold \ |
18 | " | 18 | " |
diff --git a/meta-python/recipes-devtools/python/python3-deprecated_1.2.14.bb b/meta-python/recipes-devtools/python/python3-deprecated_1.2.14.bb index 4b5c78fb0..49d5f01c8 100644 --- a/meta-python/recipes-devtools/python/python3-deprecated_1.2.14.bb +++ b/meta-python/recipes-devtools/python/python3-deprecated_1.2.14.bb | |||
@@ -9,5 +9,5 @@ SRC_URI[sha256sum] = "e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d5 | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-wrapt \ | 12 | python3-wrapt \ |
13 | " | 13 | " |
diff --git a/meta-python/recipes-devtools/python/python3-dill_0.3.8.bb b/meta-python/recipes-devtools/python/python3-dill_0.3.8.bb index 4ea5aa04a..04e7f4bfb 100644 --- a/meta-python/recipes-devtools/python/python3-dill_0.3.8.bb +++ b/meta-python/recipes-devtools/python/python3-dill_0.3.8.bb | |||
@@ -10,10 +10,10 @@ inherit pypi setuptools3 | |||
10 | PYPI_PACKAGE_EXT = "tar.gz" | 10 | PYPI_PACKAGE_EXT = "tar.gz" |
11 | 11 | ||
12 | RDEPENDS:${PN} += "\ | 12 | RDEPENDS:${PN} += "\ |
13 | ${PYTHON_PN}-multiprocessing \ | 13 | python3-multiprocessing \ |
14 | ${PYTHON_PN}-logging \ | 14 | python3-logging \ |
15 | ${PYTHON_PN}-profile \ | 15 | python3-profile \ |
16 | ${PYTHON_PN}-core \ | 16 | python3-core \ |
17 | " | 17 | " |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-diskcache_5.6.3.bb b/meta-python/recipes-devtools/python/python3-diskcache_5.6.3.bb index 8bc498dc4..09b06553d 100644 --- a/meta-python/recipes-devtools/python/python3-diskcache_5.6.3.bb +++ b/meta-python/recipes-devtools/python/python3-diskcache_5.6.3.bb | |||
@@ -10,13 +10,13 @@ PYPI_PACKAGE = "diskcache" | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} = "\ | 12 | RDEPENDS:${PN} = "\ |
13 | ${PYTHON_PN}-json \ | 13 | python3-json \ |
14 | ${PYTHON_PN}-pickle \ | 14 | python3-pickle \ |
15 | ${PYTHON_PN}-sqlite3 \ | 15 | python3-sqlite3 \ |
16 | ${PYTHON_PN}-core \ | 16 | python3-core \ |
17 | ${PYTHON_PN}-io \ | 17 | python3-io \ |
18 | ${PYTHON_PN}-compression \ | 18 | python3-compression \ |
19 | ${PYTHON_PN}-threading \ | 19 | python3-threading \ |
20 | " | 20 | " |
21 | 21 | ||
22 | CLEANBROKEN = "1" | 22 | CLEANBROKEN = "1" |
diff --git a/meta-python/recipes-devtools/python/python3-distro_1.9.0.bb b/meta-python/recipes-devtools/python/python3-distro_1.9.0.bb index a342432a6..08a952678 100644 --- a/meta-python/recipes-devtools/python/python3-distro_1.9.0.bb +++ b/meta-python/recipes-devtools/python/python3-distro_1.9.0.bb | |||
@@ -10,10 +10,10 @@ SRC_URI[sha256sum] = "2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd | |||
10 | inherit pypi python_setuptools_build_meta | 10 | inherit pypi python_setuptools_build_meta |
11 | 11 | ||
12 | RDEPENDS:${PN} = "\ | 12 | RDEPENDS:${PN} = "\ |
13 | ${PYTHON_PN}-core \ | 13 | python3-core \ |
14 | ${PYTHON_PN}-json \ | 14 | python3-json \ |
15 | ${PYTHON_PN}-logging \ | 15 | python3-logging \ |
16 | ${PYTHON_PN}-shell \ | 16 | python3-shell \ |
17 | " | 17 | " |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-django_4.2.10.bb b/meta-python/recipes-devtools/python/python3-django_4.2.10.bb index 45de69235..c78c8aab5 100644 --- a/meta-python/recipes-devtools/python/python3-django_4.2.10.bb +++ b/meta-python/recipes-devtools/python/python3-django_4.2.10.bb | |||
@@ -4,8 +4,8 @@ inherit setuptools3 | |||
4 | SRC_URI[sha256sum] = "b1260ed381b10a11753c73444408e19869f3241fc45c985cd55a30177c789d13" | 4 | SRC_URI[sha256sum] = "b1260ed381b10a11753c73444408e19869f3241fc45c985cd55a30177c789d13" |
5 | 5 | ||
6 | RDEPENDS:${PN} += "\ | 6 | RDEPENDS:${PN} += "\ |
7 | ${PYTHON_PN}-sqlparse \ | 7 | python3-sqlparse \ |
8 | ${PYTHON_PN}-asgiref \ | 8 | python3-asgiref \ |
9 | " | 9 | " |
10 | 10 | ||
11 | # Set DEFAULT_PREFERENCE so that the LTS version of django is built by | 11 | # Set DEFAULT_PREFERENCE so that the LTS version of django is built by |
diff --git a/meta-python/recipes-devtools/python/python3-django_5.0.2.bb b/meta-python/recipes-devtools/python/python3-django_5.0.2.bb index 318b62408..3f61dabe0 100644 --- a/meta-python/recipes-devtools/python/python3-django_5.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-django_5.0.2.bb | |||
@@ -4,6 +4,6 @@ inherit setuptools3 | |||
4 | SRC_URI[sha256sum] = "b5bb1d11b2518a5f91372a282f24662f58f66749666b0a286ab057029f728080" | 4 | SRC_URI[sha256sum] = "b5bb1d11b2518a5f91372a282f24662f58f66749666b0a286ab057029f728080" |
5 | 5 | ||
6 | RDEPENDS:${PN} += "\ | 6 | RDEPENDS:${PN} += "\ |
7 | ${PYTHON_PN}-sqlparse \ | 7 | python3-sqlparse \ |
8 | ${PYTHON_PN}-asgiref \ | 8 | python3-asgiref \ |
9 | " | 9 | " |
diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.14.0.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.14.0.bb index fee8a3a02..c39f37f7e 100644 --- a/meta-python/recipes-devtools/python/python3-djangorestframework_3.14.0.bb +++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.14.0.bb | |||
@@ -12,5 +12,5 @@ PYPI_PACKAGE = "djangorestframework" | |||
12 | inherit pypi setuptools3 | 12 | inherit pypi setuptools3 |
13 | 13 | ||
14 | RDEPENDS:${PN} += "\ | 14 | RDEPENDS:${PN} += "\ |
15 | ${PYTHON_PN}-django \ | 15 | python3-django \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-elementpath_4.3.0.bb b/meta-python/recipes-devtools/python/python3-elementpath_4.3.0.bb index a61ec646f..3e7f70f04 100644 --- a/meta-python/recipes-devtools/python/python3-elementpath_4.3.0.bb +++ b/meta-python/recipes-devtools/python/python3-elementpath_4.3.0.bb | |||
@@ -9,11 +9,11 @@ PYPI_PACKAGE = "elementpath" | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-xml \ | 12 | python3-xml \ |
13 | ${PYTHON_PN}-core \ | 13 | python3-core \ |
14 | ${PYTHON_PN}-numbers \ | 14 | python3-numbers \ |
15 | ${PYTHON_PN}-datetime \ | 15 | python3-datetime \ |
16 | ${PYTHON_PN}-stringold \ | 16 | python3-stringold \ |
17 | " | 17 | " |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-eth-account_0.11.0.bb b/meta-python/recipes-devtools/python/python3-eth-account_0.11.0.bb index 84c270df6..ce48d9dcf 100644 --- a/meta-python/recipes-devtools/python/python3-eth-account_0.11.0.bb +++ b/meta-python/recipes-devtools/python/python3-eth-account_0.11.0.bb | |||
@@ -9,12 +9,12 @@ SRC_URI[sha256sum] = "2ffc7a0c7538053a06a7d11495c16c7ad9897dd42be0f64ca7551e9f6e | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-bitarray \ | 12 | python3-bitarray \ |
13 | ${PYTHON_PN}-eth-abi \ | 13 | python3-eth-abi \ |
14 | ${PYTHON_PN}-eth-keyfile \ | 14 | python3-eth-keyfile \ |
15 | ${PYTHON_PN}-eth-keys \ | 15 | python3-eth-keys \ |
16 | ${PYTHON_PN}-eth-rlp \ | 16 | python3-eth-rlp \ |
17 | ${PYTHON_PN}-eth-utils \ | 17 | python3-eth-utils \ |
18 | ${PYTHON_PN}-hexbytes \ | 18 | python3-hexbytes \ |
19 | ${PYTHON_PN}-rlp \ | 19 | python3-rlp \ |
20 | " | 20 | " |
diff --git a/meta-python/recipes-devtools/python/python3-eth-hash_0.6.0.bb b/meta-python/recipes-devtools/python/python3-eth-hash_0.6.0.bb index 77e656527..8464dbe40 100644 --- a/meta-python/recipes-devtools/python/python3-eth-hash_0.6.0.bb +++ b/meta-python/recipes-devtools/python/python3-eth-hash_0.6.0.bb | |||
@@ -9,6 +9,6 @@ SRC_URI[sha256sum] = "ae72889e60db6acbb3872c288cfa02ed157f4c27630fcd7f9c8442302c | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} = "\ | 11 | RDEPENDS:${PN} = "\ |
12 | ${PYTHON_PN}-logging \ | 12 | python3-logging \ |
13 | ${PYTHON_PN}-pycryptodome \ | 13 | python3-pycryptodome \ |
14 | " | 14 | " |
diff --git a/meta-python/recipes-devtools/python/python3-eth-rlp_1.0.1.bb b/meta-python/recipes-devtools/python/python3-eth-rlp_1.0.1.bb index 243f75f5b..7ee20b9b2 100644 --- a/meta-python/recipes-devtools/python/python3-eth-rlp_1.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-eth-rlp_1.0.1.bb | |||
@@ -9,8 +9,8 @@ SRC_URI[sha256sum] = "d61dbda892ee1220f28fb3663c08f6383c305db9f1f5624dc585c9cd05 | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} = " \ | 11 | RDEPENDS:${PN} = " \ |
12 | ${PYTHON_PN}-eth-utils \ | 12 | python3-eth-utils \ |
13 | ${PYTHON_PN}-hexbytes \ | 13 | python3-hexbytes \ |
14 | ${PYTHON_PN}-rlp \ | 14 | python3-rlp \ |
15 | ${PYTHON_PN}-typing-extensions \ | 15 | python3-typing-extensions \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-evdev_1.6.1.bb b/meta-python/recipes-devtools/python/python3-evdev_1.6.1.bb index c091040c5..be6f9611e 100644 --- a/meta-python/recipes-devtools/python/python3-evdev_1.6.1.bb +++ b/meta-python/recipes-devtools/python/python3-evdev_1.6.1.bb | |||
@@ -14,9 +14,9 @@ do_compile:prepend() { | |||
14 | SETUPTOOLS_BUILD_ARGS = "build_ecodes --evdev-headers ${STAGING_DIR_TARGET}/usr/include/linux/input.h:${STAGING_DIR_TARGET}/usr/include/linux/input-event-codes.h" | 14 | SETUPTOOLS_BUILD_ARGS = "build_ecodes --evdev-headers ${STAGING_DIR_TARGET}/usr/include/linux/input.h:${STAGING_DIR_TARGET}/usr/include/linux/input-event-codes.h" |
15 | 15 | ||
16 | RDEPENDS:${PN} += "\ | 16 | RDEPENDS:${PN} += "\ |
17 | ${PYTHON_PN}-ctypes \ | 17 | python3-ctypes \ |
18 | ${PYTHON_PN}-fcntl \ | 18 | python3-fcntl \ |
19 | ${PYTHON_PN}-io \ | 19 | python3-io \ |
20 | ${PYTHON_PN}-shell \ | 20 | python3-shell \ |
21 | ${PYTHON_PN}-stringold \ | 21 | python3-stringold \ |
22 | " | 22 | " |
diff --git a/meta-python/recipes-devtools/python/python3-eventlet_0.35.1.bb b/meta-python/recipes-devtools/python/python3-eventlet_0.35.1.bb index c1d10eca3..eb7f76b09 100644 --- a/meta-python/recipes-devtools/python/python3-eventlet_0.35.1.bb +++ b/meta-python/recipes-devtools/python/python3-eventlet_0.35.1.bb | |||
@@ -9,7 +9,7 @@ SRC_URI[sha256sum] = "3b2eede94d64538cb894eec50302a881e056ed7e057f0e24fb45b28a19 | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-dnspython \ | 12 | python3-dnspython \ |
13 | ${PYTHON_PN}-six \ | 13 | python3-six \ |
14 | ${PYTHON_PN}-greenlet \ | 14 | python3-greenlet \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-fasteners_0.19.bb b/meta-python/recipes-devtools/python/python3-fasteners_0.19.bb index a4fece023..22e58c566 100644 --- a/meta-python/recipes-devtools/python/python3-fasteners_0.19.bb +++ b/meta-python/recipes-devtools/python/python3-fasteners_0.19.bb | |||
@@ -8,6 +8,6 @@ SRC_URI[sha256sum] = "b4f37c3ac52d8a445af3a66bce57b33b5e90b97c696b7b984f530cf8f0 | |||
8 | inherit pypi python_setuptools_build_meta | 8 | inherit pypi python_setuptools_build_meta |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-logging \ | 11 | python3-logging \ |
12 | ${PYTHON_PN}-fcntl \ | 12 | python3-fcntl \ |
13 | " | 13 | " |
diff --git a/meta-python/recipes-devtools/python/python3-file-magic_0.4.1.bb b/meta-python/recipes-devtools/python/python3-file-magic_0.4.1.bb index 837edf7df..5289ad374 100644 --- a/meta-python/recipes-devtools/python/python3-file-magic_0.4.1.bb +++ b/meta-python/recipes-devtools/python/python3-file-magic_0.4.1.bb | |||
@@ -13,9 +13,9 @@ inherit pypi setuptools3 | |||
13 | 13 | ||
14 | RDEPENDS:${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | file \ | 15 | file \ |
16 | ${PYTHON_PN}-core \ | 16 | python3-core \ |
17 | ${PYTHON_PN}-ctypes \ | 17 | python3-ctypes \ |
18 | ${PYTHON_PN}-threading \ | 18 | python3-threading \ |
19 | " | 19 | " |
20 | 20 | ||
21 | BBCLASSEXTEND = "native nativesdk" | 21 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-filelock_3.13.1.bb b/meta-python/recipes-devtools/python/python3-filelock_3.13.1.bb index 444c48441..ab0b114e4 100644 --- a/meta-python/recipes-devtools/python/python3-filelock_3.13.1.bb +++ b/meta-python/recipes-devtools/python/python3-filelock_3.13.1.bb | |||
@@ -12,5 +12,5 @@ BBCLASSEXTEND = "native nativesdk" | |||
12 | inherit pypi python_hatchling | 12 | inherit pypi python_hatchling |
13 | 13 | ||
14 | DEPENDS += "\ | 14 | DEPENDS += "\ |
15 | ${PYTHON_PN}-hatch-vcs-native \ | 15 | python3-hatch-vcs-native \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-flask-babel_4.0.0.bb b/meta-python/recipes-devtools/python/python3-flask-babel_4.0.0.bb index 4d8aee532..b445ec0e1 100644 --- a/meta-python/recipes-devtools/python/python3-flask-babel_4.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-flask-babel_4.0.0.bb | |||
@@ -9,7 +9,7 @@ PYPI_PACKAGE = "flask_babel" | |||
9 | inherit pypi python_poetry_core | 9 | inherit pypi python_poetry_core |
10 | 10 | ||
11 | RDEPENDS:${PN} += "\ | 11 | RDEPENDS:${PN} += "\ |
12 | ${PYTHON_PN}-speaklater \ | 12 | python3-speaklater \ |
13 | ${PYTHON_PN}-babel \ | 13 | python3-babel \ |
14 | ${PYTHON_PN}-flask \ | 14 | python3-flask \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-flask-jsonpify_1.5.0.bb b/meta-python/recipes-devtools/python/python3-flask-jsonpify_1.5.0.bb index 68eb2cefe..76c6fb773 100644 --- a/meta-python/recipes-devtools/python/python3-flask-jsonpify_1.5.0.bb +++ b/meta-python/recipes-devtools/python/python3-flask-jsonpify_1.5.0.bb | |||
@@ -11,4 +11,4 @@ SRC_URI[sha256sum] = "8ac4c732aa5b11d9f6c2de58065d3b669f139518ca8f529bce943817e2 | |||
11 | 11 | ||
12 | inherit pypi setuptools3 | 12 | inherit pypi setuptools3 |
13 | 13 | ||
14 | RDEPENDS:${PN} += "${PYTHON_PN}-flask" | 14 | RDEPENDS:${PN} += "python3-flask" |
diff --git a/meta-python/recipes-devtools/python/python3-flask-jwt_0.3.2.bb b/meta-python/recipes-devtools/python/python3-flask-jwt_0.3.2.bb index f2eb34d0f..35bcbc00a 100644 --- a/meta-python/recipes-devtools/python/python3-flask-jwt_0.3.2.bb +++ b/meta-python/recipes-devtools/python/python3-flask-jwt_0.3.2.bb | |||
@@ -11,4 +11,4 @@ SRC_URI[sha256sum] = "49c0672fbde0f1cd3374bd834918d28956e3c521c7e00089cdc5380d32 | |||
11 | 11 | ||
12 | inherit pypi setuptools3 | 12 | inherit pypi setuptools3 |
13 | 13 | ||
14 | RDEPENDS:${PN} += "${PYTHON_PN}-pyjwt ${PYTHON_PN}-flask" | 14 | RDEPENDS:${PN} += "python3-pyjwt python3-flask" |
diff --git a/meta-python/recipes-devtools/python/python3-flask-login_0.6.3.bb b/meta-python/recipes-devtools/python/python3-flask-login_0.6.3.bb index 458ba46b2..d990d4e80 100644 --- a/meta-python/recipes-devtools/python/python3-flask-login_0.6.3.bb +++ b/meta-python/recipes-devtools/python/python3-flask-login_0.6.3.bb | |||
@@ -12,4 +12,4 @@ PYPI_PACKAGE = "Flask-Login" | |||
12 | 12 | ||
13 | inherit pypi setuptools3 | 13 | inherit pypi setuptools3 |
14 | 14 | ||
15 | RDEPENDS:${PN}:class-target = "${PYTHON_PN}-flask" | 15 | RDEPENDS:${PN}:class-target = "python3-flask" |
diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_4.0.5.bb b/meta-python/recipes-devtools/python/python3-flask-migrate_4.0.5.bb index 13f4e0f5a..87553c17e 100644 --- a/meta-python/recipes-devtools/python/python3-flask-migrate_4.0.5.bb +++ b/meta-python/recipes-devtools/python/python3-flask-migrate_4.0.5.bb | |||
@@ -9,7 +9,7 @@ PYPI_PACKAGE = "Flask-Migrate" | |||
9 | inherit pypi python_setuptools_build_meta | 9 | inherit pypi python_setuptools_build_meta |
10 | 10 | ||
11 | RDEPENDS:${PN} += "\ | 11 | RDEPENDS:${PN} += "\ |
12 | ${PYTHON_PN}-flask-sqlalchemy \ | 12 | python3-flask-sqlalchemy \ |
13 | ${PYTHON_PN}-alembic \ | 13 | python3-alembic \ |
14 | ${PYTHON_PN}-flask \ | 14 | python3-flask \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb index d7edba25c..3855909fb 100644 --- a/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb +++ b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb | |||
@@ -10,6 +10,6 @@ PYPI_PACKAGE = "flask-nav" | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += "\ | 12 | RDEPENDS:${PN} += "\ |
13 | ${PYTHON_PN}-blinker \ | 13 | python3-blinker \ |
14 | ${PYTHON_PN}-flask \ | 14 | python3-flask \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb b/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb index a995a2ea3..1cd4a4b69 100644 --- a/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb +++ b/meta-python/recipes-devtools/python/python3-flask-pymongo_2.3.0.bb | |||
@@ -12,6 +12,6 @@ PYPI_PACKAGE = "Flask-PyMongo" | |||
12 | 12 | ||
13 | inherit pypi setuptools3 | 13 | inherit pypi setuptools3 |
14 | 14 | ||
15 | DEPENDS = "${PYTHON_PN}-vcversioner ${PYTHON_PN}-vcversioner-native" | 15 | DEPENDS = "python3-vcversioner python3-vcversioner-native" |
16 | 16 | ||
17 | RDEPENDS:${PN} = "${PYTHON_PN}-pymongo ${PYTHON_PN}-flask" | 17 | RDEPENDS:${PN} = "python3-pymongo python3-flask" |
diff --git a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.10.bb b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.10.bb index 7d5f1ea41..8ea455c63 100644 --- a/meta-python/recipes-devtools/python/python3-flask-restful_0.3.10.bb +++ b/meta-python/recipes-devtools/python/python3-flask-restful_0.3.10.bb | |||
@@ -12,4 +12,4 @@ inherit pypi setuptools3 | |||
12 | 12 | ||
13 | PYPI_PACKAGE = "Flask-RESTful" | 13 | PYPI_PACKAGE = "Flask-RESTful" |
14 | 14 | ||
15 | RDEPENDS:${PN} = "${PYTHON_PN}-flask" | 15 | RDEPENDS:${PN} = "python3-flask" |
diff --git a/meta-python/recipes-devtools/python/python3-flask-socketio_5.3.6.bb b/meta-python/recipes-devtools/python/python3-flask-socketio_5.3.6.bb index e151fda9d..6b76e03f8 100644 --- a/meta-python/recipes-devtools/python/python3-flask-socketio_5.3.6.bb +++ b/meta-python/recipes-devtools/python/python3-flask-socketio_5.3.6.bb | |||
@@ -12,6 +12,6 @@ PYPI_PACKAGE = "Flask-SocketIO" | |||
12 | SRC_URI[sha256sum] = "bb8f9f9123ef47632f5ce57a33514b0c0023ec3696b2384457f0fcaa5b70501c" | 12 | SRC_URI[sha256sum] = "bb8f9f9123ef47632f5ce57a33514b0c0023ec3696b2384457f0fcaa5b70501c" |
13 | 13 | ||
14 | RDEPENDS:${PN} += "\ | 14 | RDEPENDS:${PN} += "\ |
15 | ${PYTHON_PN}-flask \ | 15 | python3-flask \ |
16 | ${PYTHON_PN}-socketio \ | 16 | python3-socketio \ |
17 | " | 17 | " |
diff --git a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb index 56f63bf03..f5fe1cc44 100644 --- a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_3.1.1.bb | |||
@@ -10,4 +10,4 @@ UPSTREAM_CHECK_REGEX = "/Flask-SQLAlchemy/(?P<pver>(\d+[\.\-_]*)+)" | |||
10 | 10 | ||
11 | inherit pypi python_setuptools_build_meta | 11 | inherit pypi python_setuptools_build_meta |
12 | 12 | ||
13 | RDEPENDS:${PN} = "${PYTHON_PN}-sqlalchemy ${PYTHON_PN}-flask" | 13 | RDEPENDS:${PN} = "python3-sqlalchemy python3-flask" |
diff --git a/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb b/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb index 388e257a8..9ac321dec 100644 --- a/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb | |||
@@ -10,5 +10,5 @@ PYPI_PACKAGE = "Flask-Uploads" | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += "\ | 12 | RDEPENDS:${PN} += "\ |
13 | ${PYTHON_PN}-flask \ | 13 | python3-flask \ |
14 | " | 14 | " |
diff --git a/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb b/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb index 973bb570b..509be463f 100644 --- a/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-flask-wtf_1.2.1.bb | |||
@@ -11,8 +11,8 @@ UPSTREAM_CHECK_REGEX = "/Flask-WTF/(?P<pver>(\d+[\.\-_]*)+)" | |||
11 | inherit pypi python_hatchling | 11 | inherit pypi python_hatchling |
12 | 12 | ||
13 | RDEPENDS:${PN} = "\ | 13 | RDEPENDS:${PN} = "\ |
14 | ${PYTHON_PN}-flask \ | 14 | python3-flask \ |
15 | ${PYTHON_PN}-itsdangerous \ | 15 | python3-itsdangerous \ |
16 | ${PYTHON_PN}-json \ | 16 | python3-json \ |
17 | ${PYTHON_PN}-wtforms \ | 17 | python3-wtforms \ |
18 | " | 18 | " |
diff --git a/meta-python/recipes-devtools/python/python3-flask_3.0.2.bb b/meta-python/recipes-devtools/python/python3-flask_3.0.2.bb index 7692eb116..300ca99dd 100644 --- a/meta-python/recipes-devtools/python/python3-flask_3.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-flask_3.0.2.bb | |||
@@ -16,10 +16,10 @@ inherit pypi python_setuptools_build_meta | |||
16 | CLEANBROKEN = "1" | 16 | CLEANBROKEN = "1" |
17 | 17 | ||
18 | RDEPENDS:${PN} = " \ | 18 | RDEPENDS:${PN} = " \ |
19 | ${PYTHON_PN}-blinker \ | 19 | python3-blinker \ |
20 | ${PYTHON_PN}-click \ | 20 | python3-click \ |
21 | ${PYTHON_PN}-itsdangerous \ | 21 | python3-itsdangerous \ |
22 | ${PYTHON_PN}-jinja2 \ | 22 | python3-jinja2 \ |
23 | ${PYTHON_PN}-profile \ | 23 | python3-profile \ |
24 | ${PYTHON_PN}-werkzeug \ | 24 | python3-werkzeug \ |
25 | " | 25 | " |
diff --git a/meta-python/recipes-devtools/python/python3-frozenlist_1.4.1.bb b/meta-python/recipes-devtools/python/python3-frozenlist_1.4.1.bb index 1ce5c8452..4288f2922 100644 --- a/meta-python/recipes-devtools/python/python3-frozenlist_1.4.1.bb +++ b/meta-python/recipes-devtools/python/python3-frozenlist_1.4.1.bb | |||
@@ -8,8 +8,8 @@ SRC_URI[sha256sum] = "c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8 | |||
8 | inherit pypi python_setuptools_build_meta | 8 | inherit pypi python_setuptools_build_meta |
9 | 9 | ||
10 | DEPENDS += " \ | 10 | DEPENDS += " \ |
11 | ${PYTHON_PN}-expandvars-native \ | 11 | python3-expandvars-native \ |
12 | ${PYTHON_PN}-cython-native \ | 12 | python3-cython-native \ |
13 | " | 13 | " |
14 | 14 | ||
15 | BBCLASSEXTEND = "native nativesdk" | 15 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-gcovr_7.0.bb b/meta-python/recipes-devtools/python/python3-gcovr_7.0.bb index 6e5899ae2..1a81a38b0 100644 --- a/meta-python/recipes-devtools/python/python3-gcovr_7.0.bb +++ b/meta-python/recipes-devtools/python/python3-gcovr_7.0.bb | |||
@@ -12,6 +12,6 @@ S = "${WORKDIR}/git" | |||
12 | inherit setuptools3 | 12 | inherit setuptools3 |
13 | PIP_INSTALL_PACKAGE = "gcovr" | 13 | PIP_INSTALL_PACKAGE = "gcovr" |
14 | 14 | ||
15 | RDEPENDS:${PN} += "${PYTHON_PN}-jinja2 ${PYTHON_PN}-lxml ${PYTHON_PN}-setuptools ${PYTHON_PN}-pygments ${PYTHON_PN}-multiprocessing" | 15 | RDEPENDS:${PN} += "python3-jinja2 python3-lxml python3-setuptools python3-pygments python3-multiprocessing" |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" | 17 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-geomet_1.1.0.bb b/meta-python/recipes-devtools/python/python3-geomet_1.1.0.bb index 72b2bbcb7..bdf4fc538 100644 --- a/meta-python/recipes-devtools/python/python3-geomet_1.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-geomet_1.1.0.bb | |||
@@ -16,10 +16,10 @@ inherit setuptools3 | |||
16 | PIP_INSTALL_PACKAGE = "geomet" | 16 | PIP_INSTALL_PACKAGE = "geomet" |
17 | 17 | ||
18 | RDEPENDS:${PN} += "\ | 18 | RDEPENDS:${PN} += "\ |
19 | ${PYTHON_PN}-click \ | 19 | python3-click \ |
20 | ${PYTHON_PN}-core \ | 20 | python3-core \ |
21 | ${PYTHON_PN}-io \ | 21 | python3-io \ |
22 | ${PYTHON_PN}-json \ | 22 | python3-json \ |
23 | ${PYTHON_PN}-logging \ | 23 | python3-logging \ |
24 | ${PYTHON_PN}-six \ | 24 | python3-six \ |
25 | " | 25 | " |
diff --git a/meta-python/recipes-devtools/python/python3-gevent_24.2.1.bb b/meta-python/recipes-devtools/python/python3-gevent_24.2.1.bb index ebde34d56..0de0ef8cf 100644 --- a/meta-python/recipes-devtools/python/python3-gevent_24.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-gevent_24.2.1.bb | |||
@@ -4,11 +4,11 @@ a high-level synchronous API on top of the libevent event loop." | |||
4 | HOMEPAGE = "http://www.gevent.org" | 4 | HOMEPAGE = "http://www.gevent.org" |
5 | LICENSE = "MIT & Python-2.0" | 5 | LICENSE = "MIT & Python-2.0" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=4de99aac27b470c29c6c309e0c279b65" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=4de99aac27b470c29c6c309e0c279b65" |
7 | DEPENDS += "${PYTHON_PN}-greenlet libev libuv c-ares python3-cython-native" | 7 | DEPENDS += "python3-greenlet libev libuv c-ares python3-cython-native" |
8 | 8 | ||
9 | RDEPENDS:${PN} = "${PYTHON_PN}-greenlet \ | 9 | RDEPENDS:${PN} = "python3-greenlet \ |
10 | ${PYTHON_PN}-mime \ | 10 | python3-mime \ |
11 | ${PYTHON_PN}-pprint \ | 11 | python3-pprint \ |
12 | " | 12 | " |
13 | 13 | ||
14 | SRC_URI += "file://0001-_setuputils.py-Do-not-add-sys_inc_dir.patch" | 14 | SRC_URI += "file://0001-_setuputils.py-Do-not-add-sys_inc_dir.patch" |
diff --git a/meta-python/recipes-devtools/python/python3-google-api-core_2.16.2.bb b/meta-python/recipes-devtools/python/python3-google-api-core_2.16.2.bb index 4d13b2e78..ecb15ba3c 100644 --- a/meta-python/recipes-devtools/python/python3-google-api-core_2.16.2.bb +++ b/meta-python/recipes-devtools/python/python3-google-api-core_2.16.2.bb | |||
@@ -8,18 +8,18 @@ inherit pypi setuptools3 | |||
8 | SRC_URI[sha256sum] = "032d37b45d1d6bdaf68fb11ff621e2593263a239fa9246e2e94325f9c47876d2" | 8 | SRC_URI[sha256sum] = "032d37b45d1d6bdaf68fb11ff621e2593263a239fa9246e2e94325f9c47876d2" |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-asyncio \ | 11 | python3-asyncio \ |
12 | ${PYTHON_PN}-datetime \ | 12 | python3-datetime \ |
13 | ${PYTHON_PN}-logging \ | 13 | python3-logging \ |
14 | ${PYTHON_PN}-math \ | 14 | python3-math \ |
15 | " | 15 | " |
16 | 16 | ||
17 | RDEPENDS:${PN} += "\ | 17 | RDEPENDS:${PN} += "\ |
18 | ${PYTHON_PN}-googleapis-common-protos \ | 18 | python3-googleapis-common-protos \ |
19 | ${PYTHON_PN}-google-auth \ | 19 | python3-google-auth \ |
20 | ${PYTHON_PN}-grpcio \ | 20 | python3-grpcio \ |
21 | ${PYTHON_PN}-protobuf \ | 21 | python3-protobuf \ |
22 | ${PYTHON_PN}-pytz \ | 22 | python3-pytz \ |
23 | ${PYTHON_PN}-requests \ | 23 | python3-requests \ |
24 | ${PYTHON_PN}-six \ | 24 | python3-six \ |
25 | " | 25 | " |
diff --git a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.116.0.bb b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.116.0.bb index e4de12bae..237c4d238 100644 --- a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.116.0.bb +++ b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.116.0.bb | |||
@@ -9,12 +9,12 @@ SRC_URI[sha256sum] = "f9f32361e16114d62929638fe07f77be30216b079ad316dc2ced859d9f | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += "\ | 11 | RDEPENDS:${PN} += "\ |
12 | ${PYTHON_PN}-logging \ | 12 | python3-logging \ |
13 | ${PYTHON_PN}-six \ | 13 | python3-six \ |
14 | ${PYTHON_PN}-json \ | 14 | python3-json \ |
15 | ${PYTHON_PN}-core \ | 15 | python3-core \ |
16 | ${PYTHON_PN}-netclient \ | 16 | python3-netclient \ |
17 | ${PYTHON_PN}-httplib2 \ | 17 | python3-httplib2 \ |
18 | ${PYTHON_PN}-uritemplate \ | 18 | python3-uritemplate \ |
19 | ${PYTHON_PN}-google-api-core \ | 19 | python3-google-api-core \ |
20 | " | 20 | " |
diff --git a/meta-python/recipes-devtools/python/python3-google-auth-oauthlib_1.2.0.bb b/meta-python/recipes-devtools/python/python3-google-auth-oauthlib_1.2.0.bb index b1e89e4b4..5c071ac41 100644 --- a/meta-python/recipes-devtools/python/python3-google-auth-oauthlib_1.2.0.bb +++ b/meta-python/recipes-devtools/python/python3-google-auth-oauthlib_1.2.0.bb | |||
@@ -9,6 +9,6 @@ SRC_URI[sha256sum] = "292d2d3783349f2b0734a0a0207b1e1e322ac193c2c09d8f7c613fb7cc | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} = " \ | 11 | RDEPENDS:${PN} = " \ |
12 | ${PYTHON_PN}-google-auth \ | 12 | python3-google-auth \ |
13 | ${PYTHON_PN}-requests-oauthlib \ | 13 | python3-requests-oauthlib \ |
14 | " | 14 | " |
diff --git a/meta-python/recipes-devtools/python/python3-google-auth_2.27.0.bb b/meta-python/recipes-devtools/python/python3-google-auth_2.27.0.bb index 45098e662..79c9291a1 100644 --- a/meta-python/recipes-devtools/python/python3-google-auth_2.27.0.bb +++ b/meta-python/recipes-devtools/python/python3-google-auth_2.27.0.bb | |||
@@ -8,19 +8,19 @@ inherit pypi setuptools3 | |||
8 | SRC_URI[sha256sum] = "e863a56ccc2d8efa83df7a80272601e43487fa9a728a376205c86c26aaefa821" | 8 | SRC_URI[sha256sum] = "e863a56ccc2d8efa83df7a80272601e43487fa9a728a376205c86c26aaefa821" |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-asyncio \ | 11 | python3-asyncio \ |
12 | ${PYTHON_PN}-datetime \ | 12 | python3-datetime \ |
13 | ${PYTHON_PN}-io \ | 13 | python3-io \ |
14 | ${PYTHON_PN}-json \ | 14 | python3-json \ |
15 | ${PYTHON_PN}-logging \ | 15 | python3-logging \ |
16 | ${PYTHON_PN}-netclient \ | 16 | python3-netclient \ |
17 | ${PYTHON_PN}-numbers \ | 17 | python3-numbers \ |
18 | " | 18 | " |
19 | 19 | ||
20 | RDEPENDS:${PN} += "\ | 20 | RDEPENDS:${PN} += "\ |
21 | ${PYTHON_PN}-aiohttp \ | 21 | python3-aiohttp \ |
22 | ${PYTHON_PN}-cachetools \ | 22 | python3-cachetools \ |
23 | ${PYTHON_PN}-pyasn1-modules \ | 23 | python3-pyasn1-modules \ |
24 | ${PYTHON_PN}-rsa \ | 24 | python3-rsa \ |
25 | ${PYTHON_PN}-six \ | 25 | python3-six \ |
26 | " | 26 | " |
diff --git a/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.62.0.bb b/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.62.0.bb index 1536ba5e0..5df1210da 100644 --- a/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.62.0.bb +++ b/meta-python/recipes-devtools/python/python3-googleapis-common-protos_1.62.0.bb | |||
@@ -8,6 +8,6 @@ inherit pypi setuptools3 | |||
8 | SRC_URI[sha256sum] = "83f0ece9f94e5672cced82f592d2a5edf527a96ed1794f0bab36d5735c996277" | 8 | SRC_URI[sha256sum] = "83f0ece9f94e5672cced82f592d2a5edf527a96ed1794f0bab36d5735c996277" |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-grpcio \ | 11 | python3-grpcio \ |
12 | ${PYTHON_PN}-protobuf \ | 12 | python3-protobuf \ |
13 | " | 13 | " |
diff --git a/meta-python/recipes-devtools/python/python3-graphviz_0.20.1.bb b/meta-python/recipes-devtools/python/python3-graphviz_0.20.1.bb index 506c73813..d381699a8 100644 --- a/meta-python/recipes-devtools/python/python3-graphviz_0.20.1.bb +++ b/meta-python/recipes-devtools/python/python3-graphviz_0.20.1.bb | |||
@@ -10,7 +10,7 @@ inherit pypi setuptools3 | |||
10 | PYPI_PACKAGE_EXT = "zip" | 10 | PYPI_PACKAGE_EXT = "zip" |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-logging \ | 13 | python3-logging \ |
14 | " | 14 | " |
15 | 15 | ||
16 | BBCLASSEXTEND = "native nativesdk" | 16 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.60.1.bb b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.60.1.bb index 0ec9d95a4..07f5fe4c2 100644 --- a/meta-python/recipes-devtools/python/python3-grpcio-tools_1.60.1.bb +++ b/meta-python/recipes-devtools/python/python3-grpcio-tools_1.60.1.bb | |||
@@ -7,13 +7,13 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=7145f7cdd263359b62 | |||
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | DEPENDS += "${PYTHON_PN}-grpcio" | 10 | DEPENDS += "python3-grpcio" |
11 | 11 | ||
12 | SRC_URI += "file://0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch \ | 12 | SRC_URI += "file://0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch \ |
13 | file://0001-protobuf-Disable-musttail-attribute-on-mips.patch \ | 13 | file://0001-protobuf-Disable-musttail-attribute-on-mips.patch \ |
14 | " | 14 | " |
15 | SRC_URI[sha256sum] = "da08224ab8675c6d464b988bd8ca02cccd2bf0275bceefe8f6219bfd4a4f5e85" | 15 | SRC_URI[sha256sum] = "da08224ab8675c6d464b988bd8ca02cccd2bf0275bceefe8f6219bfd4a4f5e85" |
16 | 16 | ||
17 | RDEPENDS:${PN} = "${PYTHON_PN}-grpcio" | 17 | RDEPENDS:${PN} = "python3-grpcio" |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-grpcio_1.60.1.bb b/meta-python/recipes-devtools/python/python3-grpcio_1.60.1.bb index 6bcb31656..b00f8681c 100644 --- a/meta-python/recipes-devtools/python/python3-grpcio_1.60.1.bb +++ b/meta-python/recipes-devtools/python/python3-grpcio_1.60.1.bb | |||
@@ -4,7 +4,7 @@ SECTION = "devel/python" | |||
4 | LICENSE = "Apache-2.0 & BSD-3-Clause" | 4 | LICENSE = "Apache-2.0 & BSD-3-Clause" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=731e401b36f8077ae0c134b59be5c906" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=731e401b36f8077ae0c134b59be5c906" |
6 | 6 | ||
7 | DEPENDS += "${PYTHON_PN}-protobuf" | 7 | DEPENDS += "python3-protobuf" |
8 | 8 | ||
9 | SRC_URI += "file://0001-Include-missing-cstdint-header.patch \ | 9 | SRC_URI += "file://0001-Include-missing-cstdint-header.patch \ |
10 | file://abseil-ppc-fixes.patch \ | 10 | file://abseil-ppc-fixes.patch \ |
@@ -12,9 +12,9 @@ SRC_URI += "file://0001-Include-missing-cstdint-header.patch \ | |||
12 | " | 12 | " |
13 | SRC_URI[sha256sum] = "dd1d3a8d1d2e50ad9b59e10aa7f07c7d1be2b367f3f2d33c5fade96ed5460962" | 13 | SRC_URI[sha256sum] = "dd1d3a8d1d2e50ad9b59e10aa7f07c7d1be2b367f3f2d33c5fade96ed5460962" |
14 | 14 | ||
15 | RDEPENDS:${PN} = "${PYTHON_PN}-protobuf \ | 15 | RDEPENDS:${PN} = "python3-protobuf \ |
16 | ${PYTHON_PN}-setuptools \ | 16 | python3-setuptools \ |
17 | ${PYTHON_PN}-six \ | 17 | python3-six \ |
18 | " | 18 | " |
19 | 19 | ||
20 | inherit setuptools3 | 20 | inherit setuptools3 |
diff --git a/meta-python/recipes-devtools/python/python3-html5lib_1.1.bb b/meta-python/recipes-devtools/python/python3-html5lib_1.1.bb index ee44e837e..d6272a07c 100644 --- a/meta-python/recipes-devtools/python/python3-html5lib_1.1.bb +++ b/meta-python/recipes-devtools/python/python3-html5lib_1.1.bb | |||
@@ -8,10 +8,10 @@ SRC_URI[sha256sum] = "b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c1 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-lxml \ | 11 | python3-lxml \ |
12 | ${PYTHON_PN}-six \ | 12 | python3-six \ |
13 | ${PYTHON_PN}-webencodings \ | 13 | python3-webencodings \ |
14 | ${PYTHON_PN}-xml \ | 14 | python3-xml \ |
15 | " | 15 | " |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" | 17 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-httplib2_0.22.0.bb b/meta-python/recipes-devtools/python/python3-httplib2_0.22.0.bb index 9614de920..9318ad918 100644 --- a/meta-python/recipes-devtools/python/python3-httplib2_0.22.0.bb +++ b/meta-python/recipes-devtools/python/python3-httplib2_0.22.0.bb | |||
@@ -9,7 +9,7 @@ SRC_URI[sha256sum] = "d7a10bc5ef5ab08322488bde8c726eeee5c8618723fdb399597ec58f3d | |||
9 | inherit pypi python_setuptools_build_meta | 9 | inherit pypi python_setuptools_build_meta |
10 | 10 | ||
11 | RDEPENDS:${PN} += "\ | 11 | RDEPENDS:${PN} += "\ |
12 | ${PYTHON_PN}-compression \ | 12 | python3-compression \ |
13 | ${PYTHON_PN}-netclient \ | 13 | python3-netclient \ |
14 | ${PYTHON_PN}-pyparsing \ | 14 | python3-pyparsing \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-humanfriendly_10.0.bb b/meta-python/recipes-devtools/python/python3-humanfriendly_10.0.bb index 7d185989d..b32fe2e1d 100644 --- a/meta-python/recipes-devtools/python/python3-humanfriendly_10.0.bb +++ b/meta-python/recipes-devtools/python/python3-humanfriendly_10.0.bb | |||
@@ -11,14 +11,14 @@ SRC_URI[sha256sum] = "6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2 | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN}:class-target += " \ | 13 | RDEPENDS:${PN}:class-target += " \ |
14 | ${PYTHON_PN}-datetime \ | 14 | python3-datetime \ |
15 | ${PYTHON_PN}-fcntl \ | 15 | python3-fcntl \ |
16 | ${PYTHON_PN}-io \ | 16 | python3-io \ |
17 | ${PYTHON_PN}-logging \ | 17 | python3-logging \ |
18 | ${PYTHON_PN}-math \ | 18 | python3-math \ |
19 | ${PYTHON_PN}-numbers \ | 19 | python3-numbers \ |
20 | ${PYTHON_PN}-shell \ | 20 | python3-shell \ |
21 | ${PYTHON_PN}-stringold \ | 21 | python3-stringold \ |
22 | " | 22 | " |
23 | 23 | ||
24 | BBCLASSEXTEND = "native nativesdk" | 24 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-humanize_4.9.0.bb b/meta-python/recipes-devtools/python/python3-humanize_4.9.0.bb index d74070876..da1eea4cf 100644 --- a/meta-python/recipes-devtools/python/python3-humanize_4.9.0.bb +++ b/meta-python/recipes-devtools/python/python3-humanize_4.9.0.bb | |||
@@ -10,13 +10,13 @@ SRC_URI[sha256sum] = "582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5a | |||
10 | inherit pypi python_hatchling | 10 | inherit pypi python_hatchling |
11 | 11 | ||
12 | DEPENDS += "\ | 12 | DEPENDS += "\ |
13 | ${PYTHON_PN}-setuptools-scm-native \ | 13 | python3-setuptools-scm-native \ |
14 | ${PYTHON_PN}-hatch-vcs-native \ | 14 | python3-hatch-vcs-native \ |
15 | " | 15 | " |
16 | 16 | ||
17 | RDEPENDS:${PN} += "\ | 17 | RDEPENDS:${PN} += "\ |
18 | ${PYTHON_PN}-datetime \ | 18 | python3-datetime \ |
19 | ${PYTHON_PN}-setuptools \ | 19 | python3-setuptools \ |
20 | " | 20 | " |
21 | 21 | ||
22 | BBCLASSEXTEND = "native nativesdk" | 22 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-hyperlink_21.0.0.bb b/meta-python/recipes-devtools/python/python3-hyperlink_21.0.0.bb index 7cdecf109..a3fae39c7 100644 --- a/meta-python/recipes-devtools/python/python3-hyperlink_21.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-hyperlink_21.0.0.bb | |||
@@ -7,7 +7,7 @@ SRC_URI[sha256sum] = "427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d27 | |||
7 | 7 | ||
8 | inherit pypi python_setuptools_build_meta | 8 | inherit pypi python_setuptools_build_meta |
9 | 9 | ||
10 | RDEPENDS:${PN} += "${PYTHON_PN}-stringold ${PYTHON_PN}-netclient ${PYTHON_PN}-idna" | 10 | RDEPENDS:${PN} += "python3-stringold python3-netclient python3-idna" |
11 | 11 | ||
12 | PACKAGES =. "${PN}-test " | 12 | PACKAGES =. "${PN}-test " |
13 | 13 | ||
diff --git a/meta-python/recipes-devtools/python/python3-ifaddr_0.2.0.bb b/meta-python/recipes-devtools/python/python3-ifaddr_0.2.0.bb index 6c97c374e..371bbf2ab 100644 --- a/meta-python/recipes-devtools/python/python3-ifaddr_0.2.0.bb +++ b/meta-python/recipes-devtools/python/python3-ifaddr_0.2.0.bb | |||
@@ -10,5 +10,5 @@ SRC_URI[sha256sum] = "cc0cbfcaabf765d44595825fb96a99bb12c79716b73b44330ea38ee2b0 | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-ctypes \ | 13 | python3-ctypes \ |
14 | " | 14 | " |
diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.34.0.bb b/meta-python/recipes-devtools/python/python3-imageio_2.34.0.bb index 8653983ca..e38d69440 100644 --- a/meta-python/recipes-devtools/python/python3-imageio_2.34.0.bb +++ b/meta-python/recipes-devtools/python/python3-imageio_2.34.0.bb | |||
@@ -9,4 +9,4 @@ SRC_URI[sha256sum] = "ae9732e10acf807a22c389aef193f42215718e16bd06eed0c5bb57e103 | |||
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} = "${PYTHON_PN}-numpy ${PYTHON_PN}-pillow" | 12 | RDEPENDS:${PN} = "python3-numpy python3-pillow" |
diff --git a/meta-python/recipes-devtools/python/python3-incremental_22.10.0.bb b/meta-python/recipes-devtools/python/python3-incremental_22.10.0.bb index 016bafc13..3d93cc05e 100644 --- a/meta-python/recipes-devtools/python/python3-incremental_22.10.0.bb +++ b/meta-python/recipes-devtools/python/python3-incremental_22.10.0.bb | |||
@@ -8,12 +8,12 @@ SRC_URI[sha256sum] = "912feeb5e0f7e0188e6f42241d2f450002e11bbc0937c65865045854c2 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-twisted \ | 11 | python3-twisted \ |
12 | ${PYTHON_PN}-click \ | 12 | python3-click \ |
13 | " | 13 | " |
14 | 14 | ||
15 | # -native is needed to build python[3]-twisted, however, we need to take steps to | 15 | # -native is needed to build python[3]-twisted, however, we need to take steps to |
16 | # prevent a circular dependency. The build apparently does not use the part of | 16 | # prevent a circular dependency. The build apparently does not use the part of |
17 | # python-incremental which uses python-twisted, so this hack is OK. | 17 | # python-incremental which uses python-twisted, so this hack is OK. |
18 | RDEPENDS:${PYTHON_PN}-incremental-native:remove = "${PYTHON_PN}-twisted-native" | 18 | RDEPENDS:python3-incremental-native:remove = "python3-twisted-native" |
19 | BBCLASSEXTEND = "native" | 19 | BBCLASSEXTEND = "native" |
diff --git a/meta-python/recipes-devtools/python/python3-inflate64_1.0.0.bb b/meta-python/recipes-devtools/python/python3-inflate64_1.0.0.bb index d3b557406..2ccc98e36 100644 --- a/meta-python/recipes-devtools/python/python3-inflate64_1.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-inflate64_1.0.0.bb | |||
@@ -11,6 +11,6 @@ SRC_URI[sha256sum] = "3278827b803cf006a1df251f3e13374c7d26db779e5a33329cc11789b8 | |||
11 | PYPI_PACKAGE = "inflate64" | 11 | PYPI_PACKAGE = "inflate64" |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-core \ | 14 | python3-core \ |
15 | ${PYTHON_PN}-importlib-metadata \ | 15 | python3-importlib-metadata \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-ipython_8.21.0.bb b/meta-python/recipes-devtools/python/python3-ipython_8.21.0.bb index 86e4c6454..7f5dde768 100644 --- a/meta-python/recipes-devtools/python/python3-ipython_8.21.0.bb +++ b/meta-python/recipes-devtools/python/python3-ipython_8.21.0.bb | |||
@@ -8,21 +8,21 @@ PYPI_PACKAGE = "ipython" | |||
8 | SRC_URI[sha256sum] = "48fbc236fbe0e138b88773fa0437751f14c3645fb483f1d4c5dee58b37e5ce73" | 8 | SRC_URI[sha256sum] = "48fbc236fbe0e138b88773fa0437751f14c3645fb483f1d4c5dee58b37e5ce73" |
9 | 9 | ||
10 | RDEPENDS:${PN} = "\ | 10 | RDEPENDS:${PN} = "\ |
11 | ${PYTHON_PN}-setuptools \ | 11 | python3-setuptools \ |
12 | ${PYTHON_PN}-jedi \ | 12 | python3-jedi \ |
13 | ${PYTHON_PN}-decorator \ | 13 | python3-decorator \ |
14 | ${PYTHON_PN}-pickleshare \ | 14 | python3-pickleshare \ |
15 | ${PYTHON_PN}-traitlets \ | 15 | python3-traitlets \ |
16 | ${PYTHON_PN}-prompt-toolkit \ | 16 | python3-prompt-toolkit \ |
17 | ${PYTHON_PN}-pygments \ | 17 | python3-pygments \ |
18 | ${PYTHON_PN}-backcall \ | 18 | python3-backcall \ |
19 | ${PYTHON_PN}-pydoc \ | 19 | python3-pydoc \ |
20 | ${PYTHON_PN}-debugger \ | 20 | python3-debugger \ |
21 | ${PYTHON_PN}-pexpect \ | 21 | python3-pexpect \ |
22 | ${PYTHON_PN}-unixadmin \ | 22 | python3-unixadmin \ |
23 | ${PYTHON_PN}-misc \ | 23 | python3-misc \ |
24 | ${PYTHON_PN}-sqlite3 \ | 24 | python3-sqlite3 \ |
25 | ${PYTHON_PN}-stack-data \ | 25 | python3-stack-data \ |
26 | " | 26 | " |
27 | 27 | ||
28 | inherit setuptools3 pypi | 28 | inherit setuptools3 pypi |
diff --git a/meta-python/recipes-devtools/python/python3-itsdangerous_2.1.2.bb b/meta-python/recipes-devtools/python/python3-itsdangerous_2.1.2.bb index 2e8c7e780..5af1d594b 100644 --- a/meta-python/recipes-devtools/python/python3-itsdangerous_2.1.2.bb +++ b/meta-python/recipes-devtools/python/python3-itsdangerous_2.1.2.bb | |||
@@ -10,8 +10,8 @@ inherit pypi setuptools3 | |||
10 | CLEANBROKEN = "1" | 10 | CLEANBROKEN = "1" |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-simplejson \ | 13 | python3-simplejson \ |
14 | ${PYTHON_PN}-netclient \ | 14 | python3-netclient \ |
15 | ${PYTHON_PN}-compression \ | 15 | python3-compression \ |
16 | ${PYTHON_PN}-json \ | 16 | python3-json \ |
17 | " | 17 | " |
diff --git a/meta-python/recipes-devtools/python/python3-jdatetime_4.1.1.bb b/meta-python/recipes-devtools/python/python3-jdatetime_4.1.1.bb index 1b65f3bc9..22a798529 100644 --- a/meta-python/recipes-devtools/python/python3-jdatetime_4.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-jdatetime_4.1.1.bb | |||
@@ -12,6 +12,6 @@ inherit pypi setuptools3 | |||
12 | CLEANBROKEN = "1" | 12 | CLEANBROKEN = "1" |
13 | 13 | ||
14 | RDEPENDS:${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | ${PYTHON_PN}-modules \ | 15 | python3-modules \ |
16 | " | 16 | " |
17 | 17 | ||
diff --git a/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb b/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb index 8655150b0..018a63a5f 100644 --- a/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb +++ b/meta-python/recipes-devtools/python/python3-jdcal_1.4.1.bb | |||
@@ -12,14 +12,14 @@ inherit pypi setuptools3 ptest | |||
12 | SRC_URI[md5sum] = "e05bdb60fa80f25bc60e73e0c6b7c5dc" | 12 | SRC_URI[md5sum] = "e05bdb60fa80f25bc60e73e0c6b7c5dc" |
13 | SRC_URI[sha256sum] = "472872e096eb8df219c23f2689fc336668bdb43d194094b5cc1707e1640acfc8" | 13 | SRC_URI[sha256sum] = "472872e096eb8df219c23f2689fc336668bdb43d194094b5cc1707e1640acfc8" |
14 | 14 | ||
15 | RDEPENDS:${PN} += "${PYTHON_PN}-compression ${PYTHON_PN}-io ${PYTHON_PN}-pprint ${PYTHON_PN}-shell" | 15 | RDEPENDS:${PN} += "python3-compression python3-io python3-pprint python3-shell" |
16 | 16 | ||
17 | SRC_URI += " \ | 17 | SRC_URI += " \ |
18 | file://run-ptest \ | 18 | file://run-ptest \ |
19 | " | 19 | " |
20 | 20 | ||
21 | RDEPENDS:${PN}-ptest += " \ | 21 | RDEPENDS:${PN}-ptest += " \ |
22 | ${PYTHON_PN}-pytest \ | 22 | python3-pytest \ |
23 | " | 23 | " |
24 | 24 | ||
25 | do_install_ptest() { | 25 | do_install_ptest() { |
diff --git a/meta-python/recipes-devtools/python/python3-jedi_0.19.1.bb b/meta-python/recipes-devtools/python/python3-jedi_0.19.1.bb index f33562518..56395c3b5 100644 --- a/meta-python/recipes-devtools/python/python3-jedi_0.19.1.bb +++ b/meta-python/recipes-devtools/python/python3-jedi_0.19.1.bb | |||
@@ -8,12 +8,12 @@ PYPI_PACKAGE = "jedi" | |||
8 | SRC_URI[sha256sum] = "cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd" | 8 | SRC_URI[sha256sum] = "cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd" |
9 | 9 | ||
10 | RDEPENDS:${PN} = " \ | 10 | RDEPENDS:${PN} = " \ |
11 | ${PYTHON_PN}-parso \ | 11 | python3-parso \ |
12 | ${PYTHON_PN}-core \ | 12 | python3-core \ |
13 | ${PYTHON_PN}-compression \ | 13 | python3-compression \ |
14 | ${PYTHON_PN}-pydoc \ | 14 | python3-pydoc \ |
15 | ${PYTHON_PN}-compile \ | 15 | python3-compile \ |
16 | ${PYTHON_PN}-json \ | 16 | python3-json \ |
17 | " | 17 | " |
18 | 18 | ||
19 | inherit setuptools3 pypi | 19 | inherit setuptools3 pypi |
diff --git a/meta-python/recipes-devtools/python/python3-jsbeautifier_1.14.11.bb b/meta-python/recipes-devtools/python/python3-jsbeautifier_1.14.11.bb index 7b438778e..54482a69c 100644 --- a/meta-python/recipes-devtools/python/python3-jsbeautifier_1.14.11.bb +++ b/meta-python/recipes-devtools/python/python3-jsbeautifier_1.14.11.bb | |||
@@ -11,9 +11,9 @@ SRC_URI[sha256sum] = "6b632581ea60dd1c133cd25a48ad187b4b91f526623c4b0fb5443ef805 | |||
11 | PYPI_PACKAGE="jsbeautifier" | 11 | PYPI_PACKAGE="jsbeautifier" |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-core \ | 14 | python3-core \ |
15 | ${PYTHON_PN}-stringold \ | 15 | python3-stringold \ |
16 | ${PYTHON_PN}-shell \ | 16 | python3-shell \ |
17 | " | 17 | " |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-jsmin_3.0.1.bb b/meta-python/recipes-devtools/python/python3-jsmin_3.0.1.bb index 51b17066e..15c9b1459 100644 --- a/meta-python/recipes-devtools/python/python3-jsmin_3.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-jsmin_3.0.1.bb | |||
@@ -14,7 +14,7 @@ SRC_URI += " \ | |||
14 | " | 14 | " |
15 | 15 | ||
16 | RDEPENDS:${PN}-ptest += " \ | 16 | RDEPENDS:${PN}-ptest += " \ |
17 | ${PYTHON_PN}-pytest \ | 17 | python3-pytest \ |
18 | " | 18 | " |
19 | 19 | ||
20 | do_install_ptest() { | 20 | do_install_ptest() { |
diff --git a/meta-python/recipes-devtools/python/python3-jsonpatch_1.33.bb b/meta-python/recipes-devtools/python/python3-jsonpatch_1.33.bb index 3d6deb2a6..6a1715c6d 100644 --- a/meta-python/recipes-devtools/python/python3-jsonpatch_1.33.bb +++ b/meta-python/recipes-devtools/python/python3-jsonpatch_1.33.bb | |||
@@ -8,8 +8,8 @@ inherit pypi setuptools3 | |||
8 | SRC_URI[sha256sum] = "9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c" | 8 | SRC_URI[sha256sum] = "9fcd4009c41e6d12348b4a0ff2563ba56a2923a7dfee731d004e212e1ee5030c" |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-json \ | 11 | python3-json \ |
12 | ${PYTHON_PN}-jsonpointer \ | 12 | python3-jsonpointer \ |
13 | ${PYTHON_PN}-netclient \ | 13 | python3-netclient \ |
14 | ${PYTHON_PN}-stringold \ | 14 | python3-stringold \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-langtable_0.0.64.bb b/meta-python/recipes-devtools/python/python3-langtable_0.0.64.bb index 8fb8c6e88..f9c232b9c 100644 --- a/meta-python/recipes-devtools/python/python3-langtable_0.0.64.bb +++ b/meta-python/recipes-devtools/python/python3-langtable_0.0.64.bb | |||
@@ -16,8 +16,8 @@ DISTUTILS_INSTALL_ARGS += " \ | |||
16 | FILES:${PN} += "${datadir}/*" | 16 | FILES:${PN} += "${datadir}/*" |
17 | 17 | ||
18 | RDEPENDS:${PN} += " \ | 18 | RDEPENDS:${PN} += " \ |
19 | ${PYTHON_PN}-compression \ | 19 | python3-compression \ |
20 | ${PYTHON_PN}-doctest \ | 20 | python3-doctest \ |
21 | ${PYTHON_PN}-logging \ | 21 | python3-logging \ |
22 | ${PYTHON_PN}-xml \ | 22 | python3-xml \ |
23 | " | 23 | " |
diff --git a/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.10.0.bb b/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.10.0.bb index 9232a5a91..263c46869 100644 --- a/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.10.0.bb +++ b/meta-python/recipes-devtools/python/python3-lazy-object-proxy_1.10.0.bb | |||
@@ -4,7 +4,7 @@ LICENSE = "BSD-2-Clause" | |||
4 | SECTION = "devel/python" | 4 | SECTION = "devel/python" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d606e94f56c21c8e0cdde0b622dcdf57" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d606e94f56c21c8e0cdde0b622dcdf57" |
6 | 6 | ||
7 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-pip-native" | 7 | DEPENDS += "python3-setuptools-scm-native python3-pip-native" |
8 | 8 | ||
9 | SRC_URI[sha256sum] = "78247b6d45f43a52ef35c25b5581459e85117225408a4128a3daf8bf9648ac69" | 9 | SRC_URI[sha256sum] = "78247b6d45f43a52ef35c25b5581459e85117225408a4128a3daf8bf9648ac69" |
10 | 10 | ||
diff --git a/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb b/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb index a855c3914..97b3e7236 100644 --- a/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb | |||
@@ -19,8 +19,8 @@ RDEPENDS:${PN} += " \ | |||
19 | python3 \ | 19 | python3 \ |
20 | " | 20 | " |
21 | RDEPENDS:${PN}-ptest += " \ | 21 | RDEPENDS:${PN}-ptest += " \ |
22 | ${PYTHON_PN}-pytest \ | 22 | python3-pytest \ |
23 | ${PYTHON_PN}-unittest-automake-output \ | 23 | python3-unittest-automake-output \ |
24 | " | 24 | " |
25 | 25 | ||
26 | do_install_ptest() { | 26 | do_install_ptest() { |
diff --git a/meta-python/recipes-devtools/python/python3-luma-core_2.4.2.bb b/meta-python/recipes-devtools/python/python3-luma-core_2.4.2.bb index c2a18c0fd..90967f8e5 100644 --- a/meta-python/recipes-devtools/python/python3-luma-core_2.4.2.bb +++ b/meta-python/recipes-devtools/python/python3-luma-core_2.4.2.bb | |||
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "963c264164d4374f549d57db09599e0ca458cea1bd05e16939897619be | |||
11 | PYPI_PACKAGE = "luma.core" | 11 | PYPI_PACKAGE = "luma.core" |
12 | 12 | ||
13 | RDEPENDS:${PN} += " \ | 13 | RDEPENDS:${PN} += " \ |
14 | ${PYTHON_PN}-pillow \ | 14 | python3-pillow \ |
15 | ${PYTHON_PN}-threading \ | 15 | python3-threading \ |
16 | ${PYTHON_PN}-smbus2 \ | 16 | python3-smbus2 \ |
17 | " | 17 | " |
diff --git a/meta-python/recipes-devtools/python/python3-luma-oled_3.13.0.bb b/meta-python/recipes-devtools/python/python3-luma-oled_3.13.0.bb index 13ced6b20..95f066aff 100644 --- a/meta-python/recipes-devtools/python/python3-luma-oled_3.13.0.bb +++ b/meta-python/recipes-devtools/python/python3-luma-oled_3.13.0.bb | |||
@@ -15,5 +15,5 @@ CLEANBROKEN = "1" | |||
15 | PYPI_PACKAGE = "luma.oled" | 15 | PYPI_PACKAGE = "luma.oled" |
16 | 16 | ||
17 | RDEPENDS:${PN} += " \ | 17 | RDEPENDS:${PN} += " \ |
18 | ${PYTHON_PN}-luma-core \ | 18 | python3-luma-core \ |
19 | " | 19 | " |
diff --git a/meta-python/recipes-devtools/python/python3-m2crypto_0.40.1.bb b/meta-python/recipes-devtools/python/python3-m2crypto_0.40.1.bb index 062a63a39..1d8c22d19 100644 --- a/meta-python/recipes-devtools/python/python3-m2crypto_0.40.1.bb +++ b/meta-python/recipes-devtools/python/python3-m2crypto_0.40.1.bb | |||
@@ -18,13 +18,13 @@ inherit pypi siteinfo setuptools3 | |||
18 | 18 | ||
19 | DEPENDS += "openssl swig-native" | 19 | DEPENDS += "openssl swig-native" |
20 | RDEPENDS:${PN} += "\ | 20 | RDEPENDS:${PN} += "\ |
21 | ${PYTHON_PN}-datetime \ | 21 | python3-datetime \ |
22 | ${PYTHON_PN}-setuptools \ | 22 | python3-setuptools \ |
23 | ${PYTHON_PN}-logging \ | 23 | python3-logging \ |
24 | ${PYTHON_PN}-netclient \ | 24 | python3-netclient \ |
25 | ${PYTHON_PN}-netserver \ | 25 | python3-netserver \ |
26 | ${PYTHON_PN}-numbers \ | 26 | python3-numbers \ |
27 | ${PYTHON_PN}-xmlrpc \ | 27 | python3-xmlrpc \ |
28 | " | 28 | " |
29 | 29 | ||
30 | DISTUTILS_BUILD_ARGS += "build_ext --openssl=${STAGING_EXECPREFIXDIR} -I${STAGING_INCDIR}" | 30 | DISTUTILS_BUILD_ARGS += "build_ext --openssl=${STAGING_EXECPREFIXDIR} -I${STAGING_INCDIR}" |
diff --git a/meta-python/recipes-devtools/python/python3-mccabe_0.7.0.bb b/meta-python/recipes-devtools/python/python3-mccabe_0.7.0.bb index 265b28a77..530491784 100644 --- a/meta-python/recipes-devtools/python/python3-mccabe_0.7.0.bb +++ b/meta-python/recipes-devtools/python/python3-mccabe_0.7.0.bb | |||
@@ -8,6 +8,6 @@ SRC_URI[sha256sum] = "348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f | |||
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | DEPENDS += "${PYTHON_PN}-pytest-runner-native" | 11 | DEPENDS += "python3-pytest-runner-native" |
12 | 12 | ||
13 | BBCLASSEXTEND = "native nativesdk" | 13 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-mpmath_1.3.0.bb b/meta-python/recipes-devtools/python/python3-mpmath_1.3.0.bb index 01dd8bfb4..236fbd85b 100644 --- a/meta-python/recipes-devtools/python/python3-mpmath_1.3.0.bb +++ b/meta-python/recipes-devtools/python/python3-mpmath_1.3.0.bb | |||
@@ -10,7 +10,7 @@ SRC_URI[sha256sum] = "7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a | |||
10 | 10 | ||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 13 | DEPENDS += "python3-setuptools-scm-native" |
14 | RDEPENDS:${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | python3-image \ | 15 | python3-image \ |
16 | python3-math \ | 16 | python3-math \ |
diff --git a/meta-python/recipes-devtools/python/python3-msgpack_1.0.7.bb b/meta-python/recipes-devtools/python/python3-msgpack_1.0.7.bb index 79943b55e..e88532e73 100644 --- a/meta-python/recipes-devtools/python/python3-msgpack_1.0.7.bb +++ b/meta-python/recipes-devtools/python/python3-msgpack_1.0.7.bb | |||
@@ -7,7 +7,7 @@ inherit pypi setuptools3 ptest | |||
7 | SRC_URI[sha256sum] = "572efc93db7a4d27e404501975ca6d2d9775705c2d922390d878fcf768d92c87" | 7 | SRC_URI[sha256sum] = "572efc93db7a4d27e404501975ca6d2d9775705c2d922390d878fcf768d92c87" |
8 | 8 | ||
9 | RDEPENDS:${PN}:class-target += "\ | 9 | RDEPENDS:${PN}:class-target += "\ |
10 | ${PYTHON_PN}-io \ | 10 | python3-io \ |
11 | " | 11 | " |
12 | 12 | ||
13 | BBCLASSEXTEND = "native nativesdk" | 13 | BBCLASSEXTEND = "native nativesdk" |
@@ -17,7 +17,7 @@ SRC_URI += " \ | |||
17 | " | 17 | " |
18 | 18 | ||
19 | RDEPENDS:${PN}-ptest += " \ | 19 | RDEPENDS:${PN}-ptest += " \ |
20 | ${PYTHON_PN}-pytest \ | 20 | python3-pytest \ |
21 | " | 21 | " |
22 | 22 | ||
23 | do_install_ptest() { | 23 | do_install_ptest() { |
diff --git a/meta-python/recipes-devtools/python/python3-multivolumefile_0.2.3.bb b/meta-python/recipes-devtools/python/python3-multivolumefile_0.2.3.bb index c82113101..2fd698138 100644 --- a/meta-python/recipes-devtools/python/python3-multivolumefile_0.2.3.bb +++ b/meta-python/recipes-devtools/python/python3-multivolumefile_0.2.3.bb | |||
@@ -9,13 +9,13 @@ SRC_URI[sha256sum] = "a0648d0aafbc96e59198d5c17e9acad7eb531abea51035d08ce8060dca | |||
9 | inherit python_setuptools_build_meta pypi | 9 | inherit python_setuptools_build_meta pypi |
10 | 10 | ||
11 | DEPENDS += " \ | 11 | DEPENDS += " \ |
12 | ${PYTHON_PN}-setuptools-scm-native \ | 12 | python3-setuptools-scm-native \ |
13 | ${PYTHON_PN}-toml-native \ | 13 | python3-toml-native \ |
14 | ${PYTHON_PN}-wheel-native \ | 14 | python3-wheel-native \ |
15 | " | 15 | " |
16 | 16 | ||
17 | RDEPENDS:${PN} += "\ | 17 | RDEPENDS:${PN} += "\ |
18 | ${PYTHON_PN}-io \ | 18 | python3-io \ |
19 | ${PYTHON_PN}-core \ | 19 | python3-core \ |
20 | ${PYTHON_PN}-mmap \ | 20 | python3-mmap \ |
21 | " | 21 | " |
diff --git a/meta-python/recipes-devtools/python/python3-networkx_3.1.bb b/meta-python/recipes-devtools/python/python3-networkx_3.1.bb index 7158f7b05..386023809 100644 --- a/meta-python/recipes-devtools/python/python3-networkx_3.1.bb +++ b/meta-python/recipes-devtools/python/python3-networkx_3.1.bb | |||
@@ -8,14 +8,14 @@ SRC_URI[sha256sum] = "de346335408f84de0eada6ff9fafafff9bcda11f0a0dfaa931133debb1 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-decorator \ | 11 | python3-decorator \ |
12 | ${PYTHON_PN}-netclient \ | 12 | python3-netclient \ |
13 | ${PYTHON_PN}-compression \ | 13 | python3-compression \ |
14 | ${PYTHON_PN}-numbers \ | 14 | python3-numbers \ |
15 | ${PYTHON_PN}-pickle \ | 15 | python3-pickle \ |
16 | ${PYTHON_PN}-html \ | 16 | python3-html \ |
17 | ${PYTHON_PN}-xml \ | 17 | python3-xml \ |
18 | ${PYTHON_PN}-json \ | 18 | python3-json \ |
19 | ${PYTHON_PN}-profile \ | 19 | python3-profile \ |
20 | ${PYTHON_PN}-threading \ | 20 | python3-threading \ |
21 | " | 21 | " |
diff --git a/meta-python/recipes-devtools/python/python3-ninja_1.11.1.1.bb b/meta-python/recipes-devtools/python/python3-ninja_1.11.1.1.bb index a9e0ed208..8f2e6528d 100644 --- a/meta-python/recipes-devtools/python/python3-ninja_1.11.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-ninja_1.11.1.1.bb | |||
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "9d793b08dd857e38d0b6ffe9e6b7145d7c485a42dcfea04905ca0cdb60 | |||
11 | SRC_URI += "file://no-scikit-build.patch \ | 11 | SRC_URI += "file://no-scikit-build.patch \ |
12 | file://run-ninja-from-path.patch" | 12 | file://run-ninja-from-path.patch" |
13 | 13 | ||
14 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 14 | DEPENDS += "python3-setuptools-scm-native" |
15 | 15 | ||
16 | do_install:append () { | 16 | do_install:append () { |
17 | rm -rf ${D}${bindir} | 17 | rm -rf ${D}${bindir} |
diff --git a/meta-python/recipes-devtools/python/python3-nmap_1.6.0.bb b/meta-python/recipes-devtools/python/python3-nmap_1.6.0.bb index 0a6de2d6b..5fe9ab4e3 100644 --- a/meta-python/recipes-devtools/python/python3-nmap_1.6.0.bb +++ b/meta-python/recipes-devtools/python/python3-nmap_1.6.0.bb | |||
@@ -4,7 +4,7 @@ SECTION = "devel/python" | |||
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" | 5 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" |
6 | 6 | ||
7 | DEPENDS += "${PYTHON_PN}-wheel-native" | 7 | DEPENDS += "python3-wheel-native" |
8 | 8 | ||
9 | PYPI_PACKAGE = "python3-nmap" | 9 | PYPI_PACKAGE = "python3-nmap" |
10 | 10 | ||
@@ -13,6 +13,6 @@ SRC_URI[sha256sum] = "892b5091cde429fabfb8ba63382b2db8fd795193ba147558d0a7d5534c | |||
13 | inherit pypi setuptools3 | 13 | inherit pypi setuptools3 |
14 | 14 | ||
15 | RDEPENDS:${PN} += "nmap \ | 15 | RDEPENDS:${PN} += "nmap \ |
16 | ${PYTHON_PN}-requests \ | 16 | python3-requests \ |
17 | ${PYTHON_PN}-simplejson \ | 17 | python3-simplejson \ |
18 | " | 18 | " |
diff --git a/meta-python/recipes-devtools/python/python3-nocasedict_2.0.1.bb b/meta-python/recipes-devtools/python/python3-nocasedict_2.0.1.bb index 6185b7b1e..5a2985817 100644 --- a/meta-python/recipes-devtools/python/python3-nocasedict_2.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-nocasedict_2.0.1.bb | |||
@@ -8,5 +8,5 @@ SRC_URI[sha256sum] = "960cb699f1209da80ac39e3ab50aa7342fe8ca9f70606c23447a510550 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-six \ | 11 | python3-six \ |
12 | " | 12 | " |
diff --git a/meta-python/recipes-devtools/python/python3-nocaselist_2.0.0.bb b/meta-python/recipes-devtools/python/python3-nocaselist_2.0.0.bb index 29a3c8606..2ad42247d 100644 --- a/meta-python/recipes-devtools/python/python3-nocaselist_2.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-nocaselist_2.0.0.bb | |||
@@ -8,5 +8,5 @@ SRC_URI[sha256sum] = "456aa000c6777c5d21b029c52e532f94328d4fb4f15ad2a4dd3dd62db3 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-six \ | 11 | python3-six \ |
12 | " | 12 | " |
diff --git a/meta-python/recipes-devtools/python/python3-ntplib_0.4.0.bb b/meta-python/recipes-devtools/python/python3-ntplib_0.4.0.bb index d78bec046..d0a8d7a82 100644 --- a/meta-python/recipes-devtools/python/python3-ntplib_0.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-ntplib_0.4.0.bb | |||
@@ -8,4 +8,4 @@ SRC_URI[sha256sum] = "899d8fb5f8c2555213aea95efca02934c7343df6ace9d7628a5176b176 | |||
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += "${PYTHON_PN}-datetime ${PYTHON_PN}-io" | 11 | RDEPENDS:${PN} += "python3-datetime python3-io" |
diff --git a/meta-python/recipes-devtools/python/python3-oauthlib_3.2.2.bb b/meta-python/recipes-devtools/python/python3-oauthlib_3.2.2.bb index 566279d71..833fdbcc5 100644 --- a/meta-python/recipes-devtools/python/python3-oauthlib_3.2.2.bb +++ b/meta-python/recipes-devtools/python/python3-oauthlib_3.2.2.bb | |||
@@ -14,9 +14,9 @@ inherit pypi setuptools3 | |||
14 | # | 14 | # |
15 | # Uncomment this line to enable all the optional features. | 15 | # Uncomment this line to enable all the optional features. |
16 | #PACKAGECONFIG ?= "test signedtoken signals rsa" | 16 | #PACKAGECONFIG ?= "test signedtoken signals rsa" |
17 | PACKAGECONFIG[test] = ",,,${PYTHON_PN}-blinker ${PYTHON_PN}-cryptography ${PYTHON_PN}-pytest ${PYTHON_PN}-pyjwt" | 17 | PACKAGECONFIG[test] = ",,,python3-blinker python3-cryptography python3-pytest python3-pyjwt" |
18 | PACKAGECONFIG[signedtoken] = ",,,${PYTHON_PN}-cryptography ${PYTHON_PN}-pyjwt" | 18 | PACKAGECONFIG[signedtoken] = ",,,python3-cryptography python3-pyjwt" |
19 | PACKAGECONFIG[signals] = ",,,${PYTHON_PN}-blinker" | 19 | PACKAGECONFIG[signals] = ",,,python3-blinker" |
20 | PACKAGECONFIG[rsa] = ",,,${PYTHON_PN}-cryptography" | 20 | PACKAGECONFIG[rsa] = ",,,python3-cryptography" |
21 | 21 | ||
22 | RDEPENDS:${PN} += "${PYTHON_PN}-core ${PYTHON_PN}-crypt ${PYTHON_PN}-datetime ${PYTHON_PN}-json ${PYTHON_PN}-logging ${PYTHON_PN}-math ${PYTHON_PN}-netclient ${PYTHON_PN}-unittest" | 22 | RDEPENDS:${PN} += "python3-core python3-crypt python3-datetime python3-json python3-logging python3-math python3-netclient python3-unittest" |
diff --git a/meta-python/recipes-devtools/python/python3-obd_0.7.2.bb b/meta-python/recipes-devtools/python/python3-obd_0.7.2.bb index d78642a9b..cf3daae6a 100644 --- a/meta-python/recipes-devtools/python/python3-obd_0.7.2.bb +++ b/meta-python/recipes-devtools/python/python3-obd_0.7.2.bb | |||
@@ -6,4 +6,4 @@ SRC_URI[sha256sum] = "20d38c9ded3daad1e8affab3ff367a70788d4f29ac77ab7aacddc6a6d2 | |||
6 | 6 | ||
7 | inherit setuptools3 pypi | 7 | inherit setuptools3 pypi |
8 | 8 | ||
9 | RDEPENDS:${PN} += "${PYTHON_PN}-pyserial ${PYTHON_PN}-pint ${PYTHON_PN}-setuptools ${PYTHON_PN}-packaging" | 9 | RDEPENDS:${PN} += "python3-pyserial python3-pint python3-setuptools python3-packaging" |
diff --git a/meta-python/recipes-devtools/python/python3-olefile_0.47.bb b/meta-python/recipes-devtools/python/python3-olefile_0.47.bb index 2db0adad8..bb6fa7a8c 100644 --- a/meta-python/recipes-devtools/python/python3-olefile_0.47.bb +++ b/meta-python/recipes-devtools/python/python3-olefile_0.47.bb | |||
@@ -11,7 +11,7 @@ PYPI_PACKAGE = "olefile" | |||
11 | PYPI_PACKAGE_EXT = "zip" | 11 | PYPI_PACKAGE_EXT = "zip" |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-core \ | 14 | python3-core \ |
15 | ${PYTHON_PN}-datetime \ | 15 | python3-datetime \ |
16 | ${PYTHON_PN}-logging \ | 16 | python3-logging \ |
17 | " | 17 | " |
diff --git a/meta-python/recipes-devtools/python/python3-openpyxl_3.1.2.bb b/meta-python/recipes-devtools/python/python3-openpyxl_3.1.2.bb index a88921061..4a3254cc5 100644 --- a/meta-python/recipes-devtools/python/python3-openpyxl_3.1.2.bb +++ b/meta-python/recipes-devtools/python/python3-openpyxl_3.1.2.bb | |||
@@ -12,12 +12,12 @@ inherit pypi setuptools3 | |||
12 | SRC_URI[sha256sum] = "a6f5977418eff3b2d5500d54d9db50c8277a368436f4e4f8ddb1be3422870184" | 12 | SRC_URI[sha256sum] = "a6f5977418eff3b2d5500d54d9db50c8277a368436f4e4f8ddb1be3422870184" |
13 | 13 | ||
14 | RDEPENDS:${PN} += "\ | 14 | RDEPENDS:${PN} += "\ |
15 | ${PYTHON_PN}-compression \ | 15 | python3-compression \ |
16 | ${PYTHON_PN}-io \ | 16 | python3-io \ |
17 | ${PYTHON_PN}-pprint \ | 17 | python3-pprint \ |
18 | ${PYTHON_PN}-shell \ | 18 | python3-shell \ |
19 | ${PYTHON_PN}-jdcal \ | 19 | python3-jdcal \ |
20 | ${PYTHON_PN}-et-xmlfile \ | 20 | python3-et-xmlfile \ |
21 | ${PYTHON_PN}-numbers \ | 21 | python3-numbers \ |
22 | ${PYTHON_PN}-xml \ | 22 | python3-xml \ |
23 | " | 23 | " |
diff --git a/meta-python/recipes-devtools/python/python3-ordered-set_4.1.0.bb b/meta-python/recipes-devtools/python/python3-ordered-set_4.1.0.bb index f2f1cf8e4..a391036a7 100644 --- a/meta-python/recipes-devtools/python/python3-ordered-set_4.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-ordered-set_4.1.0.bb | |||
@@ -14,7 +14,7 @@ SRC_URI += " \ | |||
14 | " | 14 | " |
15 | 15 | ||
16 | RDEPENDS:${PN}-ptest += " \ | 16 | RDEPENDS:${PN}-ptest += " \ |
17 | ${PYTHON_PN}-pytest \ | 17 | python3-pytest \ |
18 | " | 18 | " |
19 | 19 | ||
20 | do_install_ptest() { | 20 | do_install_ptest() { |
diff --git a/meta-python/recipes-devtools/python/python3-paho-mqtt_1.6.1.bb b/meta-python/recipes-devtools/python/python3-paho-mqtt_1.6.1.bb index 81a6d0a9c..9055772b5 100644 --- a/meta-python/recipes-devtools/python/python3-paho-mqtt_1.6.1.bb +++ b/meta-python/recipes-devtools/python/python3-paho-mqtt_1.6.1.bb | |||
@@ -9,7 +9,7 @@ inherit pypi setuptools3 | |||
9 | 9 | ||
10 | SRC_URI[sha256sum] = "2a8291c81623aec00372b5a85558a372c747cbca8e9934dfe218638b8eefc26f" | 10 | SRC_URI[sha256sum] = "2a8291c81623aec00372b5a85558a372c747cbca8e9934dfe218638b8eefc26f" |
11 | 11 | ||
12 | DEPENDS += "${PYTHON_PN}-pytest-runner-native" | 12 | DEPENDS += "python3-pytest-runner-native" |
13 | 13 | ||
14 | do_install:append() { | 14 | do_install:append() { |
15 | install -d -m0755 ${D}${datadir}/${BPN}/examples | 15 | install -d -m0755 ${D}${datadir}/${BPN}/examples |
@@ -18,16 +18,16 @@ do_install:append() { | |||
18 | 18 | ||
19 | PACKAGES =+ "${PN}-examples" | 19 | PACKAGES =+ "${PN}-examples" |
20 | 20 | ||
21 | RDEPENDS:${PN}-examples += "${PN} ${PYTHON_PN}-core" | 21 | RDEPENDS:${PN}-examples += "${PN} python3-core" |
22 | 22 | ||
23 | FILES:${PN}-examples = "${datadir}/${BPN}/examples" | 23 | FILES:${PN}-examples = "${datadir}/${BPN}/examples" |
24 | 24 | ||
25 | RDEPENDS:${PN} = "\ | 25 | RDEPENDS:${PN} = "\ |
26 | ${PYTHON_PN}-io \ | 26 | python3-io \ |
27 | ${PYTHON_PN}-logging \ | 27 | python3-logging \ |
28 | ${PYTHON_PN}-math \ | 28 | python3-math \ |
29 | ${PYTHON_PN}-netclient \ | 29 | python3-netclient \ |
30 | ${PYTHON_PN}-threading \ | 30 | python3-threading \ |
31 | " | 31 | " |
32 | 32 | ||
33 | BBCLASSEXTEND = "native nativesdk" | 33 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-pandas_2.0.3.bb b/meta-python/recipes-devtools/python/python3-pandas_2.0.3.bb index 5e69fea6c..91e76d991 100644 --- a/meta-python/recipes-devtools/python/python3-pandas_2.0.3.bb +++ b/meta-python/recipes-devtools/python/python3-pandas_2.0.3.bb | |||
@@ -11,9 +11,9 @@ SRC_URI[sha256sum] = "c02f372a88e0d17f36d3093a644c73cfc1788e876a7c4bcb4020a77512 | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | DEPENDS += " \ | 13 | DEPENDS += " \ |
14 | ${PYTHON_PN}-cython-native \ | 14 | python3-cython-native \ |
15 | ${PYTHON_PN}-numpy-native \ | 15 | python3-numpy-native \ |
16 | ${PYTHON_PN}-versioneer-native \ | 16 | python3-versioneer-native \ |
17 | " | 17 | " |
18 | 18 | ||
19 | PACKAGESPLITFUNCS =+ "fix_cythonized_sources" | 19 | PACKAGESPLITFUNCS =+ "fix_cythonized_sources" |
@@ -29,10 +29,10 @@ fix_cythonized_sources() { | |||
29 | CFLAGS:append:toolchain-clang = " -Wno-error=deprecated-declarations" | 29 | CFLAGS:append:toolchain-clang = " -Wno-error=deprecated-declarations" |
30 | 30 | ||
31 | RDEPENDS:${PN} += " \ | 31 | RDEPENDS:${PN} += " \ |
32 | ${PYTHON_PN}-json \ | 32 | python3-json \ |
33 | ${PYTHON_PN}-numpy \ | 33 | python3-numpy \ |
34 | ${PYTHON_PN}-dateutil \ | 34 | python3-dateutil \ |
35 | ${PYTHON_PN}-dateutil-zoneinfo \ | 35 | python3-dateutil-zoneinfo \ |
36 | ${PYTHON_PN}-pytz \ | 36 | python3-pytz \ |
37 | ${PYTHON_PN}-profile \ | 37 | python3-profile \ |
38 | " | 38 | " |
diff --git a/meta-python/recipes-devtools/python/python3-parallax_1.0.6.bb b/meta-python/recipes-devtools/python/python3-parallax_1.0.6.bb index 14c90ffb5..1fc967d95 100644 --- a/meta-python/recipes-devtools/python/python3-parallax_1.0.6.bb +++ b/meta-python/recipes-devtools/python/python3-parallax_1.0.6.bb | |||
@@ -8,6 +8,6 @@ SRC_URI[sha256sum] = "c16703202ff67aed4740c0727df304abe9f3e7851e653533b24de21b33 | |||
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += "${PYTHON_PN}-fcntl ${PYTHON_PN}-threading ${PYTHON_PN}-unixadmin" | 11 | RDEPENDS:${PN} += "python3-fcntl python3-threading python3-unixadmin" |
12 | 12 | ||
13 | BBCLASSEXTEND = "native nativesdk" | 13 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-parso_0.8.3.bb b/meta-python/recipes-devtools/python/python3-parso_0.8.3.bb index ce3471da6..217c821fb 100644 --- a/meta-python/recipes-devtools/python/python3-parso_0.8.3.bb +++ b/meta-python/recipes-devtools/python/python3-parso_0.8.3.bb | |||
@@ -10,7 +10,7 @@ SRC_URI[sha256sum] = "8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f9170 | |||
10 | inherit setuptools3 pypi | 10 | inherit setuptools3 pypi |
11 | 11 | ||
12 | RDEPENDS:${PN} = " \ | 12 | RDEPENDS:${PN} = " \ |
13 | ${PYTHON_PN}-crypt \ | 13 | python3-crypt \ |
14 | ${PYTHON_PN}-difflib \ | 14 | python3-difflib \ |
15 | ${PYTHON_PN}-logging \ | 15 | python3-logging \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-passlib_1.7.4.bb b/meta-python/recipes-devtools/python/python3-passlib_1.7.4.bb index dc692303f..8b66e2592 100644 --- a/meta-python/recipes-devtools/python/python3-passlib_1.7.4.bb +++ b/meta-python/recipes-devtools/python/python3-passlib_1.7.4.bb | |||
@@ -15,7 +15,7 @@ SRC_URI[sha256sum] = "defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c415 | |||
15 | inherit pypi setuptools3 | 15 | inherit pypi setuptools3 |
16 | 16 | ||
17 | RDEPENDS:${PN} += "\ | 17 | RDEPENDS:${PN} += "\ |
18 | ${PYTHON_PN}-crypt \ | 18 | python3-crypt \ |
19 | ${PYTHON_PN}-logging \ | 19 | python3-logging \ |
20 | ${PYTHON_PN}-netclient \ | 20 | python3-netclient \ |
21 | " | 21 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pdm_2.12.3.bb b/meta-python/recipes-devtools/python/python3-pdm_2.12.3.bb index 3361bb833..0862eab6a 100644 --- a/meta-python/recipes-devtools/python/python3-pdm_2.12.3.bb +++ b/meta-python/recipes-devtools/python/python3-pdm_2.12.3.bb | |||
@@ -9,7 +9,7 @@ SRC_URI[sha256sum] = "53cdab727c1469fdc196efd8d7ff8404a3ca91ee43c0a5714736f2020d | |||
9 | inherit pypi python_setuptools_build_meta | 9 | inherit pypi python_setuptools_build_meta |
10 | 10 | ||
11 | DEPENDS += " \ | 11 | DEPENDS += " \ |
12 | ${PYTHON_PN}-pdm-backend-native \ | 12 | python3-pdm-backend-native \ |
13 | " | 13 | " |
14 | 14 | ||
15 | BBCLASSEXTEND = "native nativesdk" | 15 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-pep8_1.7.1.bb b/meta-python/recipes-devtools/python/python3-pep8_1.7.1.bb index f3e03ed30..68507e248 100644 --- a/meta-python/recipes-devtools/python/python3-pep8_1.7.1.bb +++ b/meta-python/recipes-devtools/python/python3-pep8_1.7.1.bb | |||
@@ -9,9 +9,9 @@ SRC_URI[sha256sum] = "603a46e5c358ce20ac4807a0eeafac7505d1125a4c1bd8378757ada06f | |||
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += "${PYTHON_PN}-prettytable \ | 12 | RDEPENDS:${PN} += "python3-prettytable \ |
13 | ${PYTHON_PN}-cmd2 \ | 13 | python3-cmd2 \ |
14 | ${PYTHON_PN}-pyparsing" | 14 | python3-pyparsing" |
15 | 15 | ||
16 | SRC_URI[md5sum] = "603821d06db945c71d811b5a8d78423c" | 16 | SRC_URI[md5sum] = "603821d06db945c71d811b5a8d78423c" |
17 | SRC_URI[sha256sum] = "fe249b52e20498e59e0b5c5256aa52ee99fc295b26ec9eaa85776ffdb9fe6374" | 17 | SRC_URI[sha256sum] = "fe249b52e20498e59e0b5c5256aa52ee99fc295b26ec9eaa85776ffdb9fe6374" |
diff --git a/meta-python/recipes-devtools/python/python3-periphery_2.4.1.bb b/meta-python/recipes-devtools/python/python3-periphery_2.4.1.bb index e284ccc33..c2764b27d 100644 --- a/meta-python/recipes-devtools/python/python3-periphery_2.4.1.bb +++ b/meta-python/recipes-devtools/python/python3-periphery_2.4.1.bb | |||
@@ -10,6 +10,6 @@ inherit pypi setuptools3 | |||
10 | 10 | ||
11 | PYPI_PACKAGE = "python-periphery" | 11 | PYPI_PACKAGE = "python-periphery" |
12 | 12 | ||
13 | RDEPENDS:${PN} += "${PYTHON_PN}-mmap \ | 13 | RDEPENDS:${PN} += "python3-mmap \ |
14 | ${PYTHON_PN}-ctypes \ | 14 | python3-ctypes \ |
15 | ${PYTHON_PN}-fcntl" | 15 | python3-fcntl" |
diff --git a/meta-python/recipes-devtools/python/python3-pexpect_4.9.0.bb b/meta-python/recipes-devtools/python/python3-pexpect_4.9.0.bb index 6ee5b25bd..521df9dcd 100644 --- a/meta-python/recipes-devtools/python/python3-pexpect_4.9.0.bb +++ b/meta-python/recipes-devtools/python/python3-pexpect_4.9.0.bb | |||
@@ -13,12 +13,12 @@ inherit pypi setuptools3 | |||
13 | UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/pexpect" | 13 | UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/pexpect" |
14 | 14 | ||
15 | RDEPENDS:${PN} = "\ | 15 | RDEPENDS:${PN} = "\ |
16 | ${PYTHON_PN}-core \ | 16 | python3-core \ |
17 | ${PYTHON_PN}-io \ | 17 | python3-io \ |
18 | ${PYTHON_PN}-terminal \ | 18 | python3-terminal \ |
19 | ${PYTHON_PN}-resource \ | 19 | python3-resource \ |
20 | ${PYTHON_PN}-fcntl \ | 20 | python3-fcntl \ |
21 | ${PYTHON_PN}-ptyprocess \ | 21 | python3-ptyprocess \ |
22 | " | 22 | " |
23 | 23 | ||
24 | BBCLASSEXTEND = "native nativesdk" | 24 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-pid_3.0.4.bb b/meta-python/recipes-devtools/python/python3-pid_3.0.4.bb index 412dcfce4..c90f55105 100644 --- a/meta-python/recipes-devtools/python/python3-pid_3.0.4.bb +++ b/meta-python/recipes-devtools/python/python3-pid_3.0.4.bb | |||
@@ -9,4 +9,4 @@ SRC_URI[sha256sum] = "0e33670e83f6a33ebb0822e43a609c3247178d4a375ff50a4689e266d8 | |||
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += "${PYTHON_PN}-fcntl ${PYTHON_PN}-logging ${PYTHON_PN}-io" | 12 | RDEPENDS:${PN} += "python3-fcntl python3-logging python3-io" |
diff --git a/meta-python/recipes-devtools/python/python3-pika_1.3.2.bb b/meta-python/recipes-devtools/python/python3-pika_1.3.2.bb index d5100dd78..865accc59 100644 --- a/meta-python/recipes-devtools/python/python3-pika_1.3.2.bb +++ b/meta-python/recipes-devtools/python/python3-pika_1.3.2.bb | |||
@@ -15,12 +15,12 @@ inherit pypi python_setuptools_build_meta | |||
15 | PYPI_PACKAGE = "pika" | 15 | PYPI_PACKAGE = "pika" |
16 | 16 | ||
17 | DEPENDS += " \ | 17 | DEPENDS += " \ |
18 | ${PYTHON_PN}-setuptools-scm-native \ | 18 | python3-setuptools-scm-native \ |
19 | ${PYTHON_PN}-toml-native \ | 19 | python3-toml-native \ |
20 | " | 20 | " |
21 | 21 | ||
22 | RDEPENDS:${PN} += " \ | 22 | RDEPENDS:${PN} += " \ |
23 | ${PYTHON_PN}-logging \ | 23 | python3-logging \ |
24 | ${PYTHON_PN}-tornado \ | 24 | python3-tornado \ |
25 | ${PYTHON_PN}-twisted \ | 25 | python3-twisted \ |
26 | " | 26 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pint_0.23.bb b/meta-python/recipes-devtools/python/python3-pint_0.23.bb index 82709ea08..ad3e13e5d 100644 --- a/meta-python/recipes-devtools/python/python3-pint_0.23.bb +++ b/meta-python/recipes-devtools/python/python3-pint_0.23.bb | |||
@@ -21,12 +21,12 @@ SRC_URI += " \ | |||
21 | " | 21 | " |
22 | 22 | ||
23 | RDEPENDS:${PN} += " \ | 23 | RDEPENDS:${PN} += " \ |
24 | ${PYTHON_PN}-setuptools \ | 24 | python3-setuptools \ |
25 | ${PYTHON_PN}-packaging \ | 25 | python3-packaging \ |
26 | " | 26 | " |
27 | 27 | ||
28 | RDEPENDS:${PN}-ptest += " \ | 28 | RDEPENDS:${PN}-ptest += " \ |
29 | ${PYTHON_PN}-pytest \ | 29 | python3-pytest \ |
30 | " | 30 | " |
31 | 31 | ||
32 | do_install_ptest() { | 32 | do_install_ptest() { |
diff --git a/meta-python/recipes-devtools/python/python3-pkgconfig_1.5.5.bb b/meta-python/recipes-devtools/python/python3-pkgconfig_1.5.5.bb index 1aa91deac..9ff4d1318 100644 --- a/meta-python/recipes-devtools/python/python3-pkgconfig_1.5.5.bb +++ b/meta-python/recipes-devtools/python/python3-pkgconfig_1.5.5.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=faa7f82be8f220bff6156be4790344fc" | |||
7 | SRC_URI[sha256sum] = "deb4163ef11f75b520d822d9505c1f462761b4309b1bb713d08689759ea8b899" | 7 | SRC_URI[sha256sum] = "deb4163ef11f75b520d822d9505c1f462761b4309b1bb713d08689759ea8b899" |
8 | 8 | ||
9 | RDEPENDS:${PN} = "pkgconfig \ | 9 | RDEPENDS:${PN} = "pkgconfig \ |
10 | ${PYTHON_PN}-shell \ | 10 | python3-shell \ |
11 | " | 11 | " |
12 | 12 | ||
13 | inherit pypi python_poetry_core | 13 | inherit pypi python_poetry_core |
diff --git a/meta-python/recipes-devtools/python/python3-portion_2.4.2.bb b/meta-python/recipes-devtools/python/python3-portion_2.4.2.bb index b4bbfc6c6..3af94b48f 100644 --- a/meta-python/recipes-devtools/python/python3-portion_2.4.2.bb +++ b/meta-python/recipes-devtools/python/python3-portion_2.4.2.bb | |||
@@ -10,7 +10,7 @@ inherit pypi setuptools3 | |||
10 | SRC_URI[sha256sum] = "5289b40d98959b16b3f6927781678935d3df1b7c14947f5d7778e5e04dd9a065" | 10 | SRC_URI[sha256sum] = "5289b40d98959b16b3f6927781678935d3df1b7c14947f5d7778e5e04dd9a065" |
11 | 11 | ||
12 | RDEPENDS:${PN} = "\ | 12 | RDEPENDS:${PN} = "\ |
13 | ${PYTHON_PN}-sortedcontainers \ | 13 | python3-sortedcontainers \ |
14 | " | 14 | " |
15 | 15 | ||
16 | BBCLASSEXTEND = "native" | 16 | BBCLASSEXTEND = "native" |
diff --git a/meta-python/recipes-devtools/python/python3-progress_1.6.bb b/meta-python/recipes-devtools/python/python3-progress_1.6.bb index 1333da98d..59d1f90e9 100644 --- a/meta-python/recipes-devtools/python/python3-progress_1.6.bb +++ b/meta-python/recipes-devtools/python/python3-progress_1.6.bb | |||
@@ -8,8 +8,8 @@ SRC_URI[sha256sum] = "c9c86e98b5c03fa1fe11e3b67c1feda4788b8d0fe7336c2ff7d5644ccf | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN}:class-target += " \ | 10 | RDEPENDS:${PN}:class-target += " \ |
11 | ${PYTHON_PN}-datetime \ | 11 | python3-datetime \ |
12 | ${PYTHON_PN}-math \ | 12 | python3-math \ |
13 | " | 13 | " |
14 | 14 | ||
15 | BBCLASSEXTEND = "native nativesdk" | 15 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.43.bb b/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.43.bb index 9f7802b53..8b3b70976 100644 --- a/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.43.bb +++ b/meta-python/recipes-devtools/python/python3-prompt-toolkit_3.0.43.bb | |||
@@ -10,16 +10,16 @@ inherit pypi setuptools3 | |||
10 | PYPI_PACKAGE = "prompt_toolkit" | 10 | PYPI_PACKAGE = "prompt_toolkit" |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-core \ | 13 | python3-core \ |
14 | ${PYTHON_PN}-six \ | 14 | python3-six \ |
15 | ${PYTHON_PN}-terminal \ | 15 | python3-terminal \ |
16 | ${PYTHON_PN}-threading \ | 16 | python3-threading \ |
17 | ${PYTHON_PN}-wcwidth \ | 17 | python3-wcwidth \ |
18 | ${PYTHON_PN}-datetime \ | 18 | python3-datetime \ |
19 | ${PYTHON_PN}-shell \ | 19 | python3-shell \ |
20 | ${PYTHON_PN}-image \ | 20 | python3-image \ |
21 | ${PYTHON_PN}-asyncio \ | 21 | python3-asyncio \ |
22 | ${PYTHON_PN}-xml \ | 22 | python3-xml \ |
23 | " | 23 | " |
24 | 24 | ||
25 | BBCLASSEXTEND = "native nativesdk" | 25 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb b/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb index 5333d306b..fad62879b 100644 --- a/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb +++ b/meta-python/recipes-devtools/python/python3-protobuf_4.25.2.bb | |||
@@ -17,14 +17,14 @@ UPSTREAM_CHECK_REGEX = "protobuf/(?P<pver>\d+(\.\d+)+)/" | |||
17 | DEPENDS += "protobuf" | 17 | DEPENDS += "protobuf" |
18 | 18 | ||
19 | RDEPENDS:${PN} += " \ | 19 | RDEPENDS:${PN} += " \ |
20 | ${PYTHON_PN}-datetime \ | 20 | python3-datetime \ |
21 | ${PYTHON_PN}-json \ | 21 | python3-json \ |
22 | ${PYTHON_PN}-logging \ | 22 | python3-logging \ |
23 | ${PYTHON_PN}-netclient \ | 23 | python3-netclient \ |
24 | ${PYTHON_PN}-numbers \ | 24 | python3-numbers \ |
25 | ${PYTHON_PN}-pkgutil \ | 25 | python3-pkgutil \ |
26 | ${PYTHON_PN}-six \ | 26 | python3-six \ |
27 | ${PYTHON_PN}-unittest \ | 27 | python3-unittest \ |
28 | " | 28 | " |
29 | 29 | ||
30 | # For usage in other recipies when compiling protobuf files (e.g. by grpcio-tools) | 30 | # For usage in other recipies when compiling protobuf files (e.g. by grpcio-tools) |
diff --git a/meta-python/recipes-devtools/python/python3-py-ubjson_0.16.1.bb b/meta-python/recipes-devtools/python/python3-py-ubjson_0.16.1.bb index 222eb1e0e..0db9d65fd 100644 --- a/meta-python/recipes-devtools/python/python3-py-ubjson_0.16.1.bb +++ b/meta-python/recipes-devtools/python/python3-py-ubjson_0.16.1.bb | |||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "b9bfb8695a1c7e3632e800fb83c943bf67ed45ddd87cd0344851610c69 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-numbers \ | 11 | python3-numbers \ |
12 | " | 12 | " |
13 | 13 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-py7zr_0.20.8.bb b/meta-python/recipes-devtools/python/python3-py7zr_0.20.8.bb index f9e6820ce..3d48b5116 100644 --- a/meta-python/recipes-devtools/python/python3-py7zr_0.20.8.bb +++ b/meta-python/recipes-devtools/python/python3-py7zr_0.20.8.bb | |||
@@ -9,21 +9,21 @@ SRC_URI[sha256sum] = "2a6b0db0441e63a2dd74cbd18f5d9ae7e08dc0e54685aa486361d0db6a | |||
9 | inherit pypi python_setuptools_build_meta | 9 | inherit pypi python_setuptools_build_meta |
10 | 10 | ||
11 | DEPENDS += " \ | 11 | DEPENDS += " \ |
12 | ${PYTHON_PN}-setuptools-scm-native \ | 12 | python3-setuptools-scm-native \ |
13 | ${PYTHON_PN}-toml-native \ | 13 | python3-toml-native \ |
14 | ${PYTHON_PN}-wheel-native \ | 14 | python3-wheel-native \ |
15 | " | 15 | " |
16 | 16 | ||
17 | RDEPENDS:${PN} += "\ | 17 | RDEPENDS:${PN} += "\ |
18 | ${PYTHON_PN}-pycryptodomex \ | 18 | python3-pycryptodomex \ |
19 | ${PYTHON_PN}-multivolumefile \ | 19 | python3-multivolumefile \ |
20 | ${PYTHON_PN}-pybcj \ | 20 | python3-pybcj \ |
21 | ${PYTHON_PN}-inflate64 \ | 21 | python3-inflate64 \ |
22 | ${PYTHON_PN}-pyppmd \ | 22 | python3-pyppmd \ |
23 | ${PYTHON_PN}-pyzstd \ | 23 | python3-pyzstd \ |
24 | ${PYTHON_PN}-brotli \ | 24 | python3-brotli \ |
25 | ${PYTHON_PN}-multiprocessing \ | 25 | python3-multiprocessing \ |
26 | ${PYTHON_PN}-datetime \ | 26 | python3-datetime \ |
27 | ${PYTHON_PN}-core \ | 27 | python3-core \ |
28 | ${PYTHON_PN}-threading \ | 28 | python3-threading \ |
29 | " | 29 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pybcj_1.0.2.bb b/meta-python/recipes-devtools/python/python3-pybcj_1.0.2.bb index 34ffb9793..8cb176f2b 100644 --- a/meta-python/recipes-devtools/python/python3-pybcj_1.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-pybcj_1.0.2.bb | |||
@@ -11,14 +11,14 @@ inherit pypi python_setuptools_build_meta pypi | |||
11 | #PROVIDES = "python3-pybcj" | 11 | #PROVIDES = "python3-pybcj" |
12 | 12 | ||
13 | DEPENDS += " \ | 13 | DEPENDS += " \ |
14 | ${PYTHON_PN}-setuptools-scm-native \ | 14 | python3-setuptools-scm-native \ |
15 | ${PYTHON_PN}-toml-native \ | 15 | python3-toml-native \ |
16 | ${PYTHON_PN}-wheel-native \ | 16 | python3-wheel-native \ |
17 | " | 17 | " |
18 | 18 | ||
19 | RDEPENDS:${PN} += "\ | 19 | RDEPENDS:${PN} += "\ |
20 | ${PYTHON_PN}-email \ | 20 | python3-email \ |
21 | ${PYTHON_PN}-importlib-metadata \ | 21 | python3-importlib-metadata \ |
22 | ${PYTHON_PN}-core \ | 22 | python3-core \ |
23 | ${PYTHON_PN}-compression \ | 23 | python3-compression \ |
24 | " | 24 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pybluez_0.23.bb b/meta-python/recipes-devtools/python/python3-pybluez_0.23.bb index 219642849..a38e10eec 100644 --- a/meta-python/recipes-devtools/python/python3-pybluez_0.23.bb +++ b/meta-python/recipes-devtools/python/python3-pybluez_0.23.bb | |||
@@ -22,5 +22,5 @@ do_configure:prepend() { | |||
22 | 22 | ||
23 | RDEPENDS:${PN} += "\ | 23 | RDEPENDS:${PN} += "\ |
24 | bluez5 \ | 24 | bluez5 \ |
25 | ${PYTHON_PN}-fcntl \ | 25 | python3-fcntl \ |
26 | " | 26 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pycares_4.4.0.bb b/meta-python/recipes-devtools/python/python3-pycares_4.4.0.bb index 978fc0d4a..b6b0de880 100644 --- a/meta-python/recipes-devtools/python/python3-pycares_4.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-pycares_4.4.0.bb | |||
@@ -12,11 +12,11 @@ PYPI_PACKAGE = "pycares" | |||
12 | 12 | ||
13 | inherit pypi setuptools3 | 13 | inherit pypi setuptools3 |
14 | 14 | ||
15 | DEPENDS += "${PYTHON_PN}-cffi-native" | 15 | DEPENDS += "python3-cffi-native" |
16 | 16 | ||
17 | RDEPENDS:${PN} += " \ | 17 | RDEPENDS:${PN} += " \ |
18 | ${PYTHON_PN}-cffi \ | 18 | python3-cffi \ |
19 | ${PYTHON_PN}-idna \ | 19 | python3-idna \ |
20 | " | 20 | " |
21 | 21 | ||
22 | BBCLASSEXTEND = "native nativesdk" | 22 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_13.1.0.bb b/meta-python/recipes-devtools/python/python3-pychromecast_13.1.0.bb index 618aba4a6..30add4d2f 100644 --- a/meta-python/recipes-devtools/python/python3-pychromecast_13.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-pychromecast_13.1.0.bb | |||
@@ -10,11 +10,11 @@ PYPI_PACKAGE = "PyChromecast" | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-logging \ | 13 | python3-logging \ |
14 | ${PYTHON_PN}-zeroconf \ | 14 | python3-zeroconf \ |
15 | ${PYTHON_PN}-json \ | 15 | python3-json \ |
16 | ${PYTHON_PN}-requests \ | 16 | python3-requests \ |
17 | ${PYTHON_PN}-protobuf \ | 17 | python3-protobuf \ |
18 | ${PYTHON_PN}-compression \ | 18 | python3-compression \ |
19 | ${PYTHON_PN}-casttube \ | 19 | python3-casttube \ |
20 | " | 20 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pyfirmata_1.1.0.bb b/meta-python/recipes-devtools/python/python3-pyfirmata_1.1.0.bb index 5bbc33ade..02ebeaad7 100644 --- a/meta-python/recipes-devtools/python/python3-pyfirmata_1.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-pyfirmata_1.1.0.bb | |||
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=84ddcef430b7c44caa22b2ff4b37a3df" | |||
4 | PYPI_PACKAGE = "pyFirmata" | 4 | PYPI_PACKAGE = "pyFirmata" |
5 | 5 | ||
6 | RDEPENDS:${PN} = "\ | 6 | RDEPENDS:${PN} = "\ |
7 | ${PYTHON_PN}-pyserial \ | 7 | python3-pyserial \ |
8 | " | 8 | " |
9 | 9 | ||
10 | SRC_URI[md5sum] = "159673cfb56c72ceafc30fe91eedd847" | 10 | SRC_URI[md5sum] = "159673cfb56c72ceafc30fe91eedd847" |
diff --git a/meta-python/recipes-devtools/python/python3-pyhamcrest_2.1.0.bb b/meta-python/recipes-devtools/python/python3-pyhamcrest_2.1.0.bb index bfa4e0a69..eaa24eefe 100644 --- a/meta-python/recipes-devtools/python/python3-pyhamcrest_2.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-pyhamcrest_2.1.0.bb | |||
@@ -7,12 +7,12 @@ SRC_URI[sha256sum] = "c6acbec0923d0cb7e72c22af1926f3e7c97b8e8d69fc7498eabacaf7c9 | |||
7 | 7 | ||
8 | inherit pypi python_setuptools_build_meta | 8 | inherit pypi python_setuptools_build_meta |
9 | 9 | ||
10 | DEPENDS += "${PYTHON_PN}-hatch-vcs-native" | 10 | DEPENDS += "python3-hatch-vcs-native" |
11 | 11 | ||
12 | UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/PyHamcrest/" | 12 | UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/PyHamcrest/" |
13 | UPSTREAM_CHECK_REGEX = "/PyHamcrest/(?P<pver>(\d+[\.\-_]*)+)" | 13 | UPSTREAM_CHECK_REGEX = "/PyHamcrest/(?P<pver>(\d+[\.\-_]*)+)" |
14 | 14 | ||
15 | RDEPENDS:${PN} += " \ | 15 | RDEPENDS:${PN} += " \ |
16 | ${PYTHON_PN}-six \ | 16 | python3-six \ |
17 | ${PYTHON_PN}-numbers \ | 17 | python3-numbers \ |
18 | " | 18 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pymemcache_4.0.0.bb b/meta-python/recipes-devtools/python/python3-pymemcache_4.0.0.bb index 2a09e9694..8d966cfb6 100644 --- a/meta-python/recipes-devtools/python/python3-pymemcache_4.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-pymemcache_4.0.0.bb | |||
@@ -11,12 +11,12 @@ SRC_URI[sha256sum] = "27bf9bd1bbc1e20f83633208620d56de50f14185055e49504f4f5e94e9 | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | DEPENDS += " \ | 13 | DEPENDS += " \ |
14 | ${PYTHON_PN}-setuptools-scm-native \ | 14 | python3-setuptools-scm-native \ |
15 | ${PYTHON_PN}-six-native \ | 15 | python3-six-native \ |
16 | " | 16 | " |
17 | 17 | ||
18 | RDEPENDS:${PN} += "\ | 18 | RDEPENDS:${PN} += "\ |
19 | ${PYTHON_PN}-io \ | 19 | python3-io \ |
20 | ${PYTHON_PN}-core \ | 20 | python3-core \ |
21 | ${PYTHON_PN}-logging \ | 21 | python3-logging \ |
22 | " | 22 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pymetno_0.12.0.bb b/meta-python/recipes-devtools/python/python3-pymetno_0.12.0.bb index ae686871e..97985a8a1 100644 --- a/meta-python/recipes-devtools/python/python3-pymetno_0.12.0.bb +++ b/meta-python/recipes-devtools/python/python3-pymetno_0.12.0.bb | |||
@@ -12,7 +12,7 @@ inherit setuptools3 | |||
12 | PIP_INSTALL_PACKAGE = "PyMetno" | 12 | PIP_INSTALL_PACKAGE = "PyMetno" |
13 | 13 | ||
14 | RDEPENDS:${PN} = "\ | 14 | RDEPENDS:${PN} = "\ |
15 | ${PYTHON_PN}-aiohttp (>=3.6.1) \ | 15 | python3-aiohttp (>=3.6.1) \ |
16 | ${PYTHON_PN}-async-timeout (>=3.0.1) \ | 16 | python3-async-timeout (>=3.0.1) \ |
17 | ${PYTHON_PN}-pytz (>=2019.3) \ | 17 | python3-pytz (>=2019.3) \ |
18 | " | 18 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.184.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.184.bb index b0e62bae2..2e934fc02 100644 --- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.184.bb +++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.184.bb | |||
@@ -10,13 +10,13 @@ inherit python_poetry_core pypi | |||
10 | PIP_INSTALL_PACKAGE = "pymisp" | 10 | PIP_INSTALL_PACKAGE = "pymisp" |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-dateutil \ | 13 | python3-dateutil \ |
14 | ${PYTHON_PN}-json \ | 14 | python3-json \ |
15 | ${PYTHON_PN}-jsonschema \ | 15 | python3-jsonschema \ |
16 | ${PYTHON_PN}-requests \ | 16 | python3-requests \ |
17 | ${PYTHON_PN}-six \ | 17 | python3-six \ |
18 | ${PYTHON_PN}-deprecated \ | 18 | python3-deprecated \ |
19 | ${PYTHON_PN}-wrapt \ | 19 | python3-wrapt \ |
20 | " | 20 | " |
21 | 21 | ||
22 | # Fixes: python3-pymisp requires /bin/bash, but no | 22 | # Fixes: python3-pymisp requires /bin/bash, but no |
diff --git a/meta-python/recipes-devtools/python/python3-pymongo_4.6.1.bb b/meta-python/recipes-devtools/python/python3-pymongo_4.6.1.bb index 2704637d3..260e134cd 100644 --- a/meta-python/recipes-devtools/python/python3-pymongo_4.6.1.bb +++ b/meta-python/recipes-devtools/python/python3-pymongo_4.6.1.bb | |||
@@ -12,19 +12,19 @@ SRC_URI[sha256sum] = "31dab1f3e1d0cdd57e8df01b645f52d43cc1b653ed3afd535d2891f4fc | |||
12 | 12 | ||
13 | inherit pypi setuptools3 | 13 | inherit pypi setuptools3 |
14 | 14 | ||
15 | PACKAGES =+ "${PYTHON_PN}-bson" | 15 | PACKAGES =+ "python3-bson" |
16 | 16 | ||
17 | FILES:${PYTHON_PN}-bson = "${PYTHON_SITEPACKAGES_DIR}/bson/*" | 17 | FILES:python3-bson = "${PYTHON_SITEPACKAGES_DIR}/bson/*" |
18 | 18 | ||
19 | RDEPENDS:${PYTHON_PN}-bson += " \ | 19 | RDEPENDS:python3-bson += " \ |
20 | ${PYTHON_PN}-datetime \ | 20 | python3-datetime \ |
21 | ${PYTHON_PN}-json \ | 21 | python3-json \ |
22 | ${PYTHON_PN}-netclient \ | 22 | python3-netclient \ |
23 | ${PYTHON_PN}-numbers \ | 23 | python3-numbers \ |
24 | ${PYTHON_PN}-threading \ | 24 | python3-threading \ |
25 | " | 25 | " |
26 | 26 | ||
27 | RDEPENDS:${PN} += " \ | 27 | RDEPENDS:${PN} += " \ |
28 | ${PYTHON_PN}-bson \ | 28 | python3-bson \ |
29 | ${PYTHON_PN}-pprint \ | 29 | python3-pprint \ |
30 | " | 30 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pymysql_1.1.0.bb b/meta-python/recipes-devtools/python/python3-pymysql_1.1.0.bb index f797674e8..5e56a64aa 100644 --- a/meta-python/recipes-devtools/python/python3-pymysql_1.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-pymysql_1.1.0.bb | |||
@@ -16,4 +16,4 @@ inherit pypi python_setuptools_build_meta | |||
16 | UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/pymysql/" | 16 | UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/pymysql/" |
17 | UPSTREAM_CHECK_REGEX = "/pymysql/(?P<pver>(\d+[\.\-_]*)+)" | 17 | UPSTREAM_CHECK_REGEX = "/pymysql/(?P<pver>(\d+[\.\-_]*)+)" |
18 | 18 | ||
19 | RDEPENDS:${PN} += "${PYTHON_PN}-cryptography" | 19 | RDEPENDS:${PN} += "python3-cryptography" |
diff --git a/meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb b/meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb index 0747c67c1..d27ee23e4 100644 --- a/meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb +++ b/meta-python/recipes-devtools/python/python3-pynacl_1.5.0.bb | |||
@@ -11,7 +11,7 @@ PYPI_PACKAGE = "PyNaCl" | |||
11 | inherit pypi python_setuptools_build_meta | 11 | inherit pypi python_setuptools_build_meta |
12 | 12 | ||
13 | DEPENDS += "\ | 13 | DEPENDS += "\ |
14 | ${PYTHON_PN}-cffi-native \ | 14 | python3-cffi-native \ |
15 | libsodium \ | 15 | libsodium \ |
16 | " | 16 | " |
17 | 17 | ||
@@ -24,8 +24,8 @@ do_install:prepend() { | |||
24 | } | 24 | } |
25 | 25 | ||
26 | RDEPENDS:${PN} = "\ | 26 | RDEPENDS:${PN} = "\ |
27 | ${PYTHON_PN}-six \ | 27 | python3-six \ |
28 | ${PYTHON_PN}-cffi \ | 28 | python3-cffi \ |
29 | libsodium \ | 29 | libsodium \ |
30 | " | 30 | " |
31 | 31 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb b/meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb index 2870ec9c0..dcf0015c5 100644 --- a/meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb +++ b/meta-python/recipes-devtools/python/python3-pyperclip_1.8.2.bb | |||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "105254a8b04934f0bc84e9c24eb360a591aaf6535c9def5f29d92af107 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-ctypes \ | 11 | python3-ctypes \ |
12 | " | 12 | " |
13 | 13 | ||
14 | BBCLASSEXTEND = "native nativesdk" | 14 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-pyperf_2.6.2.bb b/meta-python/recipes-devtools/python/python3-pyperf_2.6.2.bb index 3f284f245..84c61ec8b 100644 --- a/meta-python/recipes-devtools/python/python3-pyperf_2.6.2.bb +++ b/meta-python/recipes-devtools/python/python3-pyperf_2.6.2.bb | |||
@@ -15,9 +15,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=78bc2e6e87c8c61272937b879e6dc2f8" | |||
15 | 15 | ||
16 | SRC_URI[sha256sum] = "64d8fadce6a74f478f29832c1eaa2a04856655ebff17292d5237fc8317c3a3c5" | 16 | SRC_URI[sha256sum] = "64d8fadce6a74f478f29832c1eaa2a04856655ebff17292d5237fc8317c3a3c5" |
17 | 17 | ||
18 | DEPENDS += "${PYTHON_PN}-six-native" | 18 | DEPENDS += "python3-six-native" |
19 | 19 | ||
20 | PYPI_PACKAGE = "pyperf" | 20 | PYPI_PACKAGE = "pyperf" |
21 | inherit pypi python_setuptools_build_meta | 21 | inherit pypi python_setuptools_build_meta |
22 | 22 | ||
23 | RDEPENDS:${PN} += "${PYTHON_PN}-misc ${PYTHON_PN}-statistics" | 23 | RDEPENDS:${PN} += "python3-misc python3-statistics" |
diff --git a/meta-python/recipes-devtools/python/python3-pyppmd_1.1.0.bb b/meta-python/recipes-devtools/python/python3-pyppmd_1.1.0.bb index 053c9adab..cec21007a 100644 --- a/meta-python/recipes-devtools/python/python3-pyppmd_1.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-pyppmd_1.1.0.bb | |||
@@ -9,12 +9,12 @@ inherit pypi python_setuptools_build_meta | |||
9 | SRC_URI[sha256sum] = "1d38ce2e4b7eb84b53bc8a52380b94f66ba6c39328b8800b30c2b5bf31693973" | 9 | SRC_URI[sha256sum] = "1d38ce2e4b7eb84b53bc8a52380b94f66ba6c39328b8800b30c2b5bf31693973" |
10 | 10 | ||
11 | DEPENDS += " \ | 11 | DEPENDS += " \ |
12 | ${PYTHON_PN}-setuptools-scm-native \ | 12 | python3-setuptools-scm-native \ |
13 | ${PYTHON_PN}-toml-native \ | 13 | python3-toml-native \ |
14 | ${PYTHON_PN}-wheel-native \ | 14 | python3-wheel-native \ |
15 | " | 15 | " |
16 | 16 | ||
17 | RDEPENDS:${PN} += "\ | 17 | RDEPENDS:${PN} += "\ |
18 | ${PYTHON_PN}-email \ | 18 | python3-email \ |
19 | ${PYTHON_PN}-importlib-metadata \ | 19 | python3-importlib-metadata \ |
20 | " | 20 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pyproject-api_1.6.1.bb b/meta-python/recipes-devtools/python/python3-pyproject-api_1.6.1.bb index 739df2a1b..aec19949d 100644 --- a/meta-python/recipes-devtools/python/python3-pyproject-api_1.6.1.bb +++ b/meta-python/recipes-devtools/python/python3-pyproject-api_1.6.1.bb | |||
@@ -14,10 +14,10 @@ BBCLASSEXTEND = "native nativesdk" | |||
14 | inherit pypi python_hatchling | 14 | inherit pypi python_hatchling |
15 | 15 | ||
16 | DEPENDS += "\ | 16 | DEPENDS += "\ |
17 | ${PYTHON_PN}-hatch-vcs-native \ | 17 | python3-hatch-vcs-native \ |
18 | " | 18 | " |
19 | 19 | ||
20 | RDEPENDS:${PN} += "\ | 20 | RDEPENDS:${PN} += "\ |
21 | ${PYTHON_PN}-packaging \ | 21 | python3-packaging \ |
22 | ${PYTHON_PN}-tomli \ | 22 | python3-tomli \ |
23 | " | 23 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pysonos_0.0.54.bb b/meta-python/recipes-devtools/python/python3-pysonos_0.0.54.bb index e8d75e9d7..6a484b8ae 100644 --- a/meta-python/recipes-devtools/python/python3-pysonos_0.0.54.bb +++ b/meta-python/recipes-devtools/python/python3-pysonos_0.0.54.bb | |||
@@ -9,7 +9,7 @@ SRC_URI[sha256sum] = "2a72897cfd342382573632d80d38776884a38c8d02353d9d5da4e9e8e8 | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += "\ | 11 | RDEPENDS:${PN} += "\ |
12 | ${PYTHON_PN}-ifaddr \ | 12 | python3-ifaddr \ |
13 | ${PYTHON_PN}-requests \ | 13 | python3-requests \ |
14 | ${PYTHON_PN}-xmltodict \ | 14 | python3-xmltodict \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pystemd_0.13.2.bb b/meta-python/recipes-devtools/python/python3-pystemd_0.13.2.bb index d31f45131..3bfa20fcd 100644 --- a/meta-python/recipes-devtools/python/python3-pystemd_0.13.2.bb +++ b/meta-python/recipes-devtools/python/python3-pystemd_0.13.2.bb | |||
@@ -6,12 +6,12 @@ SRC_URI[sha256sum] = "4dcfa4b13a55685c49d3d17c10631eca18c33770f66316f8ef2337b895 | |||
6 | 6 | ||
7 | DEPENDS = "systemd python3-cython-native" | 7 | DEPENDS = "systemd python3-cython-native" |
8 | RDEPENDS:${PN} += "\ | 8 | RDEPENDS:${PN} += "\ |
9 | ${PYTHON_PN}-xml \ | 9 | python3-xml \ |
10 | ${PYTHON_PN}-lxml \ | 10 | python3-lxml \ |
11 | ${PYTHON_PN}-pprint \ | 11 | python3-pprint \ |
12 | ${PYTHON_PN}-core \ | 12 | python3-core \ |
13 | ${PYTHON_PN}-shell \ | 13 | python3-shell \ |
14 | ${PYTHON_PN}-io \ | 14 | python3-io \ |
15 | " | 15 | " |
16 | REQUIRED_DISTRO_FEATURES = "systemd" | 16 | REQUIRED_DISTRO_FEATURES = "systemd" |
17 | 17 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pytest-cov_4.1.0.bb b/meta-python/recipes-devtools/python/python3-pytest-cov_4.1.0.bb index 66375dec3..0be97e5c4 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-cov_4.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-cov_4.1.0.bb | |||
@@ -9,7 +9,7 @@ SRC_URI[sha256sum] = "3904b13dfbfec47f003b8e77fd5b589cd11904a21ddf1ab38a64f204d6 | |||
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 12 | DEPENDS += "python3-setuptools-scm-native" |
13 | RDEPENDS:${PN} += "python3-coverage python3-pytest" | 13 | RDEPENDS:${PN} += "python3-coverage python3-pytest" |
14 | 14 | ||
15 | BBCLASSEXTEND = "native nativesdk" | 15 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-helpers-namespace_2021.12.29.bb b/meta-python/recipes-devtools/python/python3-pytest-helpers-namespace_2021.12.29.bb index cf62e1f03..6698b6dde 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-helpers-namespace_2021.12.29.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-helpers-namespace_2021.12.29.bb | |||
@@ -11,5 +11,5 @@ inherit pypi python_setuptools_build_meta | |||
11 | DEPENDS += "python3-setuptools-scm-native python3-setuptools-declarative-requirements-native" | 11 | DEPENDS += "python3-setuptools-scm-native python3-setuptools-declarative-requirements-native" |
12 | 12 | ||
13 | RDEPENDS:${PN} += " \ | 13 | RDEPENDS:${PN} += " \ |
14 | ${PYTHON_PN}-pytest \ | 14 | python3-pytest \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-html_4.1.1.bb b/meta-python/recipes-devtools/python/python3-pytest-html_4.1.1.bb index b9023dfcd..37478ee0a 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-html_4.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-html_4.1.1.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | DESCRIPTION = "pytest plugin for generating html reports from test results" | 1 | DESCRIPTION = "pytest plugin for generating html reports from test results" |
2 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 2 | DEPENDS += "python3-setuptools-scm-native" |
3 | 3 | ||
4 | LICENSE = "MPL-2.0" | 4 | LICENSE = "MPL-2.0" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132" |
@@ -11,11 +11,11 @@ PYPI_PACKAGE = "pytest_html" | |||
11 | inherit pypi python_hatchling | 11 | inherit pypi python_hatchling |
12 | 12 | ||
13 | DEPENDS += "\ | 13 | DEPENDS += "\ |
14 | ${PYTHON_PN}-hatch-vcs-native \ | 14 | python3-hatch-vcs-native \ |
15 | " | 15 | " |
16 | 16 | ||
17 | RDEPENDS:${PN} += " \ | 17 | RDEPENDS:${PN} += " \ |
18 | ${PYTHON_PN}-pytest \ | 18 | python3-pytest \ |
19 | " | 19 | " |
20 | 20 | ||
21 | BBCLASSEXTEND = "native nativesdk" | 21 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-json-report_1.5.0.bb b/meta-python/recipes-devtools/python/python3-pytest-json-report_1.5.0.bb index 493c241df..6b108a2d0 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-json-report_1.5.0.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-json-report_1.5.0.bb | |||
@@ -9,10 +9,10 @@ PYPI_PACKAGE = "pytest-json-report" | |||
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 12 | DEPENDS += "python3-setuptools-scm-native" |
13 | 13 | ||
14 | RDEPENDS:${PN} = "\ | 14 | RDEPENDS:${PN} = "\ |
15 | ${PYTHON_PN}-pytest \ | 15 | python3-pytest \ |
16 | ${PYTHON_PN}-pytest-metadata \ | 16 | python3-pytest-metadata \ |
17 | " | 17 | " |
18 | 18 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pytest-metadata_2.0.2.bb b/meta-python/recipes-devtools/python/python3-pytest-metadata_2.0.2.bb index e82213cbe..163a363f8 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-metadata_2.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-metadata_2.0.2.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | DESCRIPTION = "pytest-metadata is a plugin that allowed for accessing pytest metadata" | 1 | DESCRIPTION = "pytest-metadata is a plugin that allowed for accessing pytest metadata" |
2 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 2 | DEPENDS += "python3-setuptools-scm-native" |
3 | 3 | ||
4 | LICENSE = "MPL-2.0" | 4 | LICENSE = "MPL-2.0" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132" |
@@ -11,7 +11,7 @@ PYPI_PACKAGE = "pytest-metadata" | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN} = " \ | 13 | RDEPENDS:${PN} = " \ |
14 | ${PYTHON_PN}-pytest \ | 14 | python3-pytest \ |
15 | " | 15 | " |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" | 17 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-tempdir_2019.10.12.bb b/meta-python/recipes-devtools/python/python3-pytest-tempdir_2019.10.12.bb index 972c99e38..dff6af4e0 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-tempdir_2019.10.12.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-tempdir_2019.10.12.bb | |||
@@ -10,5 +10,5 @@ SRC_URI[sha256sum] = "e7d91813a9aa991db87dacdef8cfd3f1657632d731d56d06238c5ffb63 | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-pytest \ | 13 | python3-pytest \ |
14 | " | 14 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-timeout_2.2.0.bb b/meta-python/recipes-devtools/python/python3-pytest-timeout_2.2.0.bb index da8bc5dd3..a7daa05e6 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-timeout_2.2.0.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-timeout_2.2.0.bb | |||
@@ -9,4 +9,4 @@ SRC_URI[sha256sum] = "3b0b95dabf3cb50bac9ef5ca912fa0cfc286526af17afc806824df20c2 | |||
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} = "${PYTHON_PN}-pytest" | 12 | RDEPENDS:${PN} = "python3-pytest" |
diff --git a/meta-python/recipes-devtools/python/python3-pyu2f_0.1.5.bb b/meta-python/recipes-devtools/python/python3-pyu2f_0.1.5.bb index c58981a32..5a2899e13 100644 --- a/meta-python/recipes-devtools/python/python3-pyu2f_0.1.5.bb +++ b/meta-python/recipes-devtools/python/python3-pyu2f_0.1.5.bb | |||
@@ -8,13 +8,13 @@ SRC_URI[sha256sum] = "a3caa3a11842fc7d5746376f37195e6af5f17c0a15737538bb1cebf656 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-core \ | 11 | python3-core \ |
12 | ${PYTHON_PN}-crypt \ | 12 | python3-crypt \ |
13 | ${PYTHON_PN}-ctypes \ | 13 | python3-ctypes \ |
14 | ${PYTHON_PN}-io \ | 14 | python3-io \ |
15 | ${PYTHON_PN}-json \ | 15 | python3-json \ |
16 | ${PYTHON_PN}-logging \ | 16 | python3-logging \ |
17 | ${PYTHON_PN}-netclient \ | 17 | python3-netclient \ |
18 | ${PYTHON_PN}-threading \ | 18 | python3-threading \ |
19 | ${PYTHON_PN}-six \ | 19 | python3-six \ |
20 | " | 20 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pyudev_0.24.1.bb b/meta-python/recipes-devtools/python/python3-pyudev_0.24.1.bb index 6fcf346bc..ed5175fcf 100644 --- a/meta-python/recipes-devtools/python/python3-pyudev_0.24.1.bb +++ b/meta-python/recipes-devtools/python/python3-pyudev_0.24.1.bb | |||
@@ -13,10 +13,10 @@ do_configure:prepend() { | |||
13 | } | 13 | } |
14 | 14 | ||
15 | RDEPENDS:${PN} = "\ | 15 | RDEPENDS:${PN} = "\ |
16 | ${PYTHON_PN}-ctypes \ | 16 | python3-ctypes \ |
17 | ${PYTHON_PN}-misc \ | 17 | python3-misc \ |
18 | ${PYTHON_PN}-six \ | 18 | python3-six \ |
19 | ${PYTHON_PN}-threading \ | 19 | python3-threading \ |
20 | ${PYTHON_PN}-fcntl \ | 20 | python3-fcntl \ |
21 | libudev \ | 21 | libudev \ |
22 | " | 22 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb b/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb index abe352911..2282e0300 100644 --- a/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-pyusb_1.2.1.bb | |||
@@ -3,7 +3,7 @@ HOMEPAGE = "http://pyusb.sourceforge.net/" | |||
3 | LICENSE = "BSD-3-Clause" | 3 | LICENSE = "BSD-3-Clause" |
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e64a29fcd3c3dd356a24e235dfcb3905" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e64a29fcd3c3dd356a24e235dfcb3905" |
5 | 5 | ||
6 | DEPENDS += "libusb1 ${PYTHON_PN}-setuptools-scm-native" | 6 | DEPENDS += "libusb1 python3-setuptools-scm-native" |
7 | 7 | ||
8 | RDEPENDS:${PN} += " \ | 8 | RDEPENDS:${PN} += " \ |
9 | python3-logging \ | 9 | python3-logging \ |
diff --git a/meta-python/recipes-devtools/python/python3-rapidjson_1.14.bb b/meta-python/recipes-devtools/python/python3-rapidjson_1.14.bb index 8b76397bf..22868d8df 100644 --- a/meta-python/recipes-devtools/python/python3-rapidjson_1.14.bb +++ b/meta-python/recipes-devtools/python/python3-rapidjson_1.14.bb | |||
@@ -24,13 +24,13 @@ DEPENDS += " \ | |||
24 | 24 | ||
25 | # Adding required python package for the ptest (pytest and pytest->automake report translation) | 25 | # Adding required python package for the ptest (pytest and pytest->automake report translation) |
26 | RDEPENDS:${PN}-ptest += " \ | 26 | RDEPENDS:${PN}-ptest += " \ |
27 | ${PYTHON_PN}-pytest \ | 27 | python3-pytest \ |
28 | ${PYTHON_PN}-unittest-automake-output \ | 28 | python3-unittest-automake-output \ |
29 | ${PYTHON_PN}-pytz \ | 29 | python3-pytz \ |
30 | " | 30 | " |
31 | 31 | ||
32 | RDEPENDS:${PN} += " \ | 32 | RDEPENDS:${PN} += " \ |
33 | ${PYTHON_PN}-core \ | 33 | python3-core \ |
34 | " | 34 | " |
35 | 35 | ||
36 | # Installing the test suite on the target | 36 | # Installing the test suite on the target |
diff --git a/meta-python/recipes-devtools/python/python3-rarfile_4.1.bb b/meta-python/recipes-devtools/python/python3-rarfile_4.1.bb index ece92ee3b..8f5ef415c 100644 --- a/meta-python/recipes-devtools/python/python3-rarfile_4.1.bb +++ b/meta-python/recipes-devtools/python/python3-rarfile_4.1.bb | |||
@@ -14,10 +14,10 @@ PYPI_PACKAGE="rarfile" | |||
14 | 14 | ||
15 | RDEPENDS:${PN} += "\ | 15 | RDEPENDS:${PN} += "\ |
16 | p7zip \ | 16 | p7zip \ |
17 | ${PYTHON_PN}-core \ | 17 | python3-core \ |
18 | ${PYTHON_PN}-datetime \ | 18 | python3-datetime \ |
19 | ${PYTHON_PN}-crypt \ | 19 | python3-crypt \ |
20 | ${PYTHON_PN}-io \ | 20 | python3-io \ |
21 | " | 21 | " |
22 | 22 | ||
23 | BBCLASSEXTEND = "native nativesdk" | 23 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.1.bb b/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.1.bb index e02ff7911..8c2f891c1 100644 --- a/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.1.bb +++ b/meta-python/recipes-devtools/python/python3-requests-oauthlib_1.3.1.bb | |||
@@ -5,4 +5,4 @@ SRC_URI[sha256sum] = "75beac4a47881eeb94d5ea5d6ad31ef88856affe2332b9aafb52c6452c | |||
5 | 5 | ||
6 | inherit pypi setuptools3 | 6 | inherit pypi setuptools3 |
7 | 7 | ||
8 | RDEPENDS:${PN} += "${PYTHON_PN}-requests ${PYTHON_PN}-oauthlib" | 8 | RDEPENDS:${PN} += "python3-requests python3-oauthlib" |
diff --git a/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb b/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb index 49efd09a4..7df8ac07c 100644 --- a/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb | |||
@@ -11,6 +11,6 @@ inherit pypi setuptools3 | |||
11 | DEPENDS += "python3-pip-native" | 11 | DEPENDS += "python3-pip-native" |
12 | 12 | ||
13 | RDEPENDS:${PN} += " \ | 13 | RDEPENDS:${PN} += " \ |
14 | ${PYTHON_PN}-eth-utils \ | 14 | python3-eth-utils \ |
15 | ${PYTHON_PN}-typing-extensions \ | 15 | python3-typing-extensions \ |
16 | " | 16 | " |
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 4c0bd7e3e..0f34a1366 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 | |||
@@ -10,6 +10,6 @@ PYPI_PACKAGE = "robotframework-seriallibrary" | |||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-pyserial \ | 13 | python3-pyserial \ |
14 | ${PYTHON_PN}-robotframework \ | 14 | python3-robotframework \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-robotframework_7.0.bb b/meta-python/recipes-devtools/python/python3-robotframework_7.0.bb index ca301e46a..beb71e6a1 100644 --- a/meta-python/recipes-devtools/python/python3-robotframework_7.0.bb +++ b/meta-python/recipes-devtools/python/python3-robotframework_7.0.bb | |||
@@ -16,15 +16,15 @@ PYPI_PACKAGE_EXT = "zip" | |||
16 | SRC_URI[sha256sum] = "04623f758346c917db182e17591ffa474090560c02ed5a64343902e72b7b4bd5" | 16 | SRC_URI[sha256sum] = "04623f758346c917db182e17591ffa474090560c02ed5a64343902e72b7b4bd5" |
17 | 17 | ||
18 | RDEPENDS:${PN} += " \ | 18 | RDEPENDS:${PN} += " \ |
19 | ${PYTHON_PN}-shell \ | 19 | python3-shell \ |
20 | ${PYTHON_PN}-pprint \ | 20 | python3-pprint \ |
21 | ${PYTHON_PN}-xml \ | 21 | python3-xml \ |
22 | ${PYTHON_PN}-difflib \ | 22 | python3-difflib \ |
23 | ${PYTHON_PN}-threading \ | 23 | python3-threading \ |
24 | ${PYTHON_PN}-html \ | 24 | python3-html \ |
25 | ${PYTHON_PN}-docutils \ | 25 | python3-docutils \ |
26 | ${PYTHON_PN}-ctypes \ | 26 | python3-ctypes \ |
27 | ${PYTHON_PN}-logging \ | 27 | python3-logging \ |
28 | ${PYTHON_PN}-numbers \ | 28 | python3-numbers \ |
29 | ${PYTHON_PN}-profile \ | 29 | python3-profile \ |
30 | " | 30 | " |
diff --git a/meta-python/recipes-devtools/python/python3-rsa_4.9.bb b/meta-python/recipes-devtools/python/python3-rsa_4.9.bb index 0a1e359e1..c27cd1d68 100644 --- a/meta-python/recipes-devtools/python/python3-rsa_4.9.bb +++ b/meta-python/recipes-devtools/python/python3-rsa_4.9.bb | |||
@@ -26,14 +26,14 @@ ALTERNATIVE_PRIORITY = "30" | |||
26 | 26 | ||
27 | 27 | ||
28 | RDEPENDS:${PN} += "\ | 28 | RDEPENDS:${PN} += "\ |
29 | ${PYTHON_PN}-compression \ | 29 | python3-compression \ |
30 | ${PYTHON_PN}-crypt \ | 30 | python3-crypt \ |
31 | ${PYTHON_PN}-doctest \ | 31 | python3-doctest \ |
32 | ${PYTHON_PN}-logging \ | 32 | python3-logging \ |
33 | ${PYTHON_PN}-math \ | 33 | python3-math \ |
34 | ${PYTHON_PN}-multiprocessing \ | 34 | python3-multiprocessing \ |
35 | ${PYTHON_PN}-netclient \ | 35 | python3-netclient \ |
36 | ${PYTHON_PN}-pickle \ | 36 | python3-pickle \ |
37 | " | 37 | " |
38 | 38 | ||
39 | RDEPENDS:${PN} += "${PYTHON_PN}-pyasn1" | 39 | RDEPENDS:${PN} += "python3-pyasn1" |
diff --git a/meta-python/recipes-devtools/python/python3-schedule_1.2.1.bb b/meta-python/recipes-devtools/python/python3-schedule_1.2.1.bb index de326815a..6ebde30e6 100644 --- a/meta-python/recipes-devtools/python/python3-schedule_1.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-schedule_1.2.1.bb | |||
@@ -7,4 +7,4 @@ SRC_URI[sha256sum] = "843bc0538b99c93f02b8b50e3e39886c06f2d003b24f48e1aa4cadfa3f | |||
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += "${PYTHON_PN}-datetime ${PYTHON_PN}-logging ${PYTHON_PN}-math" | 10 | RDEPENDS:${PN} += "python3-datetime python3-logging python3-math" |
diff --git a/meta-python/recipes-devtools/python/python3-scikit-build_0.17.6.bb b/meta-python/recipes-devtools/python/python3-scikit-build_0.17.6.bb index 7f99dd16b..dde0941ef 100644 --- a/meta-python/recipes-devtools/python/python3-scikit-build_0.17.6.bb +++ b/meta-python/recipes-devtools/python/python3-scikit-build_0.17.6.bb | |||
@@ -2,7 +2,7 @@ SUMMARY = "Improved build system generator for Python C/C++/Fortran/Cython exten | |||
2 | LICENSE = "MIT" | 2 | LICENSE = "MIT" |
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7c96d2b08b3cec6d3c67fb864d1fd8cc" | 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7c96d2b08b3cec6d3c67fb864d1fd8cc" |
4 | 4 | ||
5 | DEPENDS = "${PYTHON_PN}-hatch-vcs-native ${PYTHON_PN}-hatch-fancy-pypi-readme-native" | 5 | DEPENDS = "python3-hatch-vcs-native python3-hatch-fancy-pypi-readme-native" |
6 | 6 | ||
7 | PYPI_PACKAGE = "scikit_build" | 7 | PYPI_PACKAGE = "scikit_build" |
8 | 8 | ||
@@ -11,11 +11,11 @@ inherit pypi python_hatchling | |||
11 | SRC_URI[sha256sum] = "b51a51a36b37c42650994b5047912f59b22e3210b23e321f287611f9ef6e5c9d" | 11 | SRC_URI[sha256sum] = "b51a51a36b37c42650994b5047912f59b22e3210b23e321f287611f9ef6e5c9d" |
12 | 12 | ||
13 | RDEPENDS:${PN} = " \ | 13 | RDEPENDS:${PN} = " \ |
14 | ${PYTHON_PN}-distro \ | 14 | python3-distro \ |
15 | ${PYTHON_PN}-packaging \ | 15 | python3-packaging \ |
16 | ${PYTHON_PN}-setuptools \ | 16 | python3-setuptools \ |
17 | ${PYTHON_PN}-typing-extensions \ | 17 | python3-typing-extensions \ |
18 | ${PYTHON_PN}-wheel \ | 18 | python3-wheel \ |
19 | cmake \ | 19 | cmake \ |
20 | " | 20 | " |
21 | 21 | ||
diff --git a/meta-python/recipes-devtools/python/python3-screeninfo_0.8.1.bb b/meta-python/recipes-devtools/python/python3-screeninfo_0.8.1.bb index 0fb3f3a22..19ac3f67f 100644 --- a/meta-python/recipes-devtools/python/python3-screeninfo_0.8.1.bb +++ b/meta-python/recipes-devtools/python/python3-screeninfo_0.8.1.bb | |||
@@ -11,6 +11,6 @@ SRC_URI[sha256sum] = "9983076bcc7e34402a1a9e4d7dabf3729411fd2abb3f3b4be7eba73519 | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-core \ | 14 | python3-core \ |
15 | ${PYTHON_PN}-profile \ | 15 | python3-profile \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-sdbus_0.11.1.bb b/meta-python/recipes-devtools/python/python3-sdbus_0.11.1.bb index 6372d3488..26bc71762 100644 --- a/meta-python/recipes-devtools/python/python3-sdbus_0.11.1.bb +++ b/meta-python/recipes-devtools/python/python3-sdbus_0.11.1.bb | |||
@@ -9,9 +9,9 @@ REQUIRED_DISTRO_FEATURES = "systemd" | |||
9 | DEPENDS += "systemd" | 9 | DEPENDS += "systemd" |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-asyncio \ | 12 | python3-asyncio \ |
13 | ${PYTHON_PN}-numbers \ | 13 | python3-numbers \ |
14 | ${PYTHON_PN}-core \ | 14 | python3-core \ |
15 | " | 15 | " |
16 | 16 | ||
17 | inherit pypi setuptools3 features_check pkgconfig | 17 | inherit pypi setuptools3 features_check pkgconfig |
diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.40.0.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.40.0.bb index ec59c712b..19095b30d 100644 --- a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.40.0.bb +++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.40.0.bb | |||
@@ -6,13 +6,13 @@ LICENSE = "MIT" | |||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=03dc788d9a9486be5e6a1d99c2c1ce3a" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=03dc788d9a9486be5e6a1d99c2c1ce3a" |
7 | 7 | ||
8 | RDEPENDS:${PN} += "\ | 8 | RDEPENDS:${PN} += "\ |
9 | ${PYTHON_PN}-urllib3 \ | 9 | python3-urllib3 \ |
10 | ${PYTHON_PN}-core \ | 10 | python3-core \ |
11 | ${PYTHON_PN}-json \ | 11 | python3-json \ |
12 | ${PYTHON_PN}-logging \ | 12 | python3-logging \ |
13 | ${PYTHON_PN}-threading \ | 13 | python3-threading \ |
14 | ${PYTHON_PN}-compression \ | 14 | python3-compression \ |
15 | ${PYTHON_PN}-datetime \ | 15 | python3-datetime \ |
16 | " | 16 | " |
17 | 17 | ||
18 | SRC_URI[sha256sum] = "34ad8cfc9b877aaa2a8eb86bfe5296a467fffe0619b931a05b181c45f6da59bf" | 18 | SRC_URI[sha256sum] = "34ad8cfc9b877aaa2a8eb86bfe5296a467fffe0619b931a05b181c45f6da59bf" |
diff --git a/meta-python/recipes-devtools/python/python3-sh_2.0.6.bb b/meta-python/recipes-devtools/python/python3-sh_2.0.6.bb index 3a652a58b..cbe000e31 100644 --- a/meta-python/recipes-devtools/python/python3-sh_2.0.6.bb +++ b/meta-python/recipes-devtools/python/python3-sh_2.0.6.bb | |||
@@ -10,16 +10,16 @@ PYPI_PACKAGE = "sh" | |||
10 | inherit pypi python_poetry_core | 10 | inherit pypi python_poetry_core |
11 | 11 | ||
12 | RDEPENDS:${PN} += " \ | 12 | RDEPENDS:${PN} += " \ |
13 | ${PYTHON_PN}-asyncio \ | 13 | python3-asyncio \ |
14 | ${PYTHON_PN}-codecs \ | 14 | python3-codecs \ |
15 | ${PYTHON_PN}-compression \ | 15 | python3-compression \ |
16 | ${PYTHON_PN}-core \ | 16 | python3-core \ |
17 | ${PYTHON_PN}-io \ | 17 | python3-io \ |
18 | ${PYTHON_PN}-logging \ | 18 | python3-logging \ |
19 | ${PYTHON_PN}-resource \ | 19 | python3-resource \ |
20 | ${PYTHON_PN}-shell \ | 20 | python3-shell \ |
21 | ${PYTHON_PN}-terminal \ | 21 | python3-terminal \ |
22 | ${PYTHON_PN}-threading \ | 22 | python3-threading \ |
23 | ${PYTHON_PN}-unixadmin \ | 23 | python3-unixadmin \ |
24 | ${PYTHON_PN}-fcntl \ | 24 | python3-fcntl \ |
25 | " | 25 | " |
diff --git a/meta-python/recipes-devtools/python/python3-simplejson_3.19.2.bb b/meta-python/recipes-devtools/python/python3-simplejson_3.19.2.bb index 91f6b35b3..cc5b1bc90 100644 --- a/meta-python/recipes-devtools/python/python3-simplejson_3.19.2.bb +++ b/meta-python/recipes-devtools/python/python3-simplejson_3.19.2.bb | |||
@@ -9,13 +9,13 @@ SRC_URI[sha256sum] = "9eb442a2442ce417801c912df68e1f6ccfcd41577ae7274953ab3ad24e | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += "\ | 11 | RDEPENDS:${PN} += "\ |
12 | ${PYTHON_PN}-io \ | 12 | python3-io \ |
13 | ${PYTHON_PN}-netserver \ | 13 | python3-netserver \ |
14 | ${PYTHON_PN}-numbers \ | 14 | python3-numbers \ |
15 | " | 15 | " |
16 | 16 | ||
17 | PACKAGES =+ "${PN}-tests" | 17 | PACKAGES =+ "${PN}-tests" |
18 | RDEPENDS:${PN}-tests = "${PN} ${PYTHON_PN}-unittest" | 18 | RDEPENDS:${PN}-tests = "${PN} python3-unittest" |
19 | FILES:${PN}-tests+= " \ | 19 | FILES:${PN}-tests+= " \ |
20 | ${PYTHON_SITEPACKAGES_DIR}/simplejson/tests \ | 20 | ${PYTHON_SITEPACKAGES_DIR}/simplejson/tests \ |
21 | ${PYTHON_SITEPACKAGES_DIR}/simplejson/tool.py* \ | 21 | ${PYTHON_SITEPACKAGES_DIR}/simplejson/tool.py* \ |
diff --git a/meta-python/recipes-devtools/python/python3-slip-dbus_0.6.5.bb b/meta-python/recipes-devtools/python/python3-slip-dbus_0.6.5.bb index ae4e6f72d..7373b02f5 100644 --- a/meta-python/recipes-devtools/python/python3-slip-dbus_0.6.5.bb +++ b/meta-python/recipes-devtools/python/python3-slip-dbus_0.6.5.bb | |||
@@ -27,7 +27,7 @@ do_compile:prepend() { | |||
27 | } | 27 | } |
28 | 28 | ||
29 | RDEPENDS:${PN} += "\ | 29 | RDEPENDS:${PN} += "\ |
30 | ${PYTHON_PN}-six \ | 30 | python3-six \ |
31 | " | 31 | " |
32 | # http://errors.yoctoproject.org/Errors/Details/184713/ | 32 | # http://errors.yoctoproject.org/Errors/Details/184713/ |
33 | # python-native/python: can't open file 'setup.py': [Errno 2] No such file or directory | 33 | # python-native/python: can't open file 'setup.py': [Errno 2] No such file or directory |
diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.4.3.bb b/meta-python/recipes-devtools/python/python3-smbus2_0.4.3.bb index cc4802e6c..b54cdb005 100644 --- a/meta-python/recipes-devtools/python/python3-smbus2_0.4.3.bb +++ b/meta-python/recipes-devtools/python/python3-smbus2_0.4.3.bb | |||
@@ -13,6 +13,6 @@ CLEANBROKEN = "1" | |||
13 | PYPI_PACKAGE = "smbus2" | 13 | PYPI_PACKAGE = "smbus2" |
14 | 14 | ||
15 | RDEPENDS:${PN} += "\ | 15 | RDEPENDS:${PN} += "\ |
16 | ${PYTHON_PN}-ctypes \ | 16 | python3-ctypes \ |
17 | ${PYTHON_PN}-fcntl \ | 17 | python3-fcntl \ |
18 | " | 18 | " |
diff --git a/meta-python/recipes-devtools/python/python3-socketio_5.11.0.bb b/meta-python/recipes-devtools/python/python3-socketio_5.11.0.bb index 72471e956..b267afc99 100644 --- a/meta-python/recipes-devtools/python/python3-socketio_5.11.0.bb +++ b/meta-python/recipes-devtools/python/python3-socketio_5.11.0.bb | |||
@@ -12,17 +12,17 @@ PYPI_PACKAGE = "python-socketio" | |||
12 | SRC_URI[sha256sum] = "b03186e04b942088781f6286c13604a853e5e35ed59158c51ff7af22fa032e6f" | 12 | SRC_URI[sha256sum] = "b03186e04b942088781f6286c13604a853e5e35ed59158c51ff7af22fa032e6f" |
13 | 13 | ||
14 | PACKAGECONFIG ?= "asyncio_client client" | 14 | PACKAGECONFIG ?= "asyncio_client client" |
15 | PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp ${PYTHON_PN}-websockets" | 15 | PACKAGECONFIG[asyncio_client] = ",,,python3-aiohttp python3-websockets" |
16 | PACKAGECONFIG[client] = ",,,${PYTHON_PN}-requests ${PYTHON_PN}-websocket-client" | 16 | PACKAGECONFIG[client] = ",,,python3-requests python3-websocket-client" |
17 | 17 | ||
18 | RDEPENDS:${PN} += "\ | 18 | RDEPENDS:${PN} += "\ |
19 | ${PYTHON_PN}-engineio \ | 19 | python3-engineio \ |
20 | ${PYTHON_PN}-logging \ | 20 | python3-logging \ |
21 | ${PYTHON_PN}-math \ | 21 | python3-math \ |
22 | ${PYTHON_PN}-pickle \ | 22 | python3-pickle \ |
23 | ${PYTHON_PN}-json \ | 23 | python3-json \ |
24 | ${PYTHON_PN}-threading \ | 24 | python3-threading \ |
25 | ${PYTHON_PN}-six \ | 25 | python3-six \ |
26 | ${PYTHON_PN}-attrs \ | 26 | python3-attrs \ |
27 | ${PYTHON_PN}-bidict \ | 27 | python3-bidict \ |
28 | " | 28 | " |
diff --git a/meta-python/recipes-devtools/python/python3-stevedore_5.1.0.bb b/meta-python/recipes-devtools/python/python3-stevedore_5.1.0.bb index d60d017d5..ce7179633 100644 --- a/meta-python/recipes-devtools/python/python3-stevedore_5.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-stevedore_5.1.0.bb | |||
@@ -5,10 +5,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "a54534acf9b89bc7ed264807013b505bf07f74dbe4bcfa37d32bd063870b087c" | 6 | SRC_URI[sha256sum] = "a54534acf9b89bc7ed264807013b505bf07f74dbe4bcfa37d32bd063870b087c" |
7 | 7 | ||
8 | DEPENDS += "${PYTHON_PN}-pbr-native" | 8 | DEPENDS += "python3-pbr-native" |
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools3 |
11 | 11 | ||
12 | RDEPENDS:${PN} += "${PYTHON_PN}-pbr ${PYTHON_PN}-six" | 12 | RDEPENDS:${PN} += "python3-pbr python3-six" |
13 | 13 | ||
14 | BBCLASSEXTEND = "native" | 14 | BBCLASSEXTEND = "native" |
diff --git a/meta-python/recipes-devtools/python/python3-stopit_1.1.2.bb b/meta-python/recipes-devtools/python/python3-stopit_1.1.2.bb index 64e3671e1..e119a0f11 100644 --- a/meta-python/recipes-devtools/python/python3-stopit_1.1.2.bb +++ b/meta-python/recipes-devtools/python/python3-stopit_1.1.2.bb | |||
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "f7f39c583fd92027bd9d06127b259aee7a5b7945c1f1fa56263811e1e7 | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-setuptools \ | 14 | python3-setuptools \ |
15 | " | 15 | " |
16 | 16 | ||
17 | BBCLASSEXTEND = "native nativesdk" \ No newline at end of file | 17 | BBCLASSEXTEND = "native nativesdk" \ No newline at end of file |
diff --git a/meta-python/recipes-devtools/python/python3-strenum_0.4.15.bb b/meta-python/recipes-devtools/python/python3-strenum_0.4.15.bb index aa85189ee..cbe7fcc21 100644 --- a/meta-python/recipes-devtools/python/python3-strenum_0.4.15.bb +++ b/meta-python/recipes-devtools/python/python3-strenum_0.4.15.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=ba0eb3de1df70bde0ed48488cfd81269" | |||
5 | 5 | ||
6 | SRC_URI += "file://0001-patch-versioneer-for-python-3.12-compatibility.patch" | 6 | SRC_URI += "file://0001-patch-versioneer-for-python-3.12-compatibility.patch" |
7 | 7 | ||
8 | DEPENDS = "${PYTHON_PN}-pytest-runner-native" | 8 | DEPENDS = "python3-pytest-runner-native" |
9 | 9 | ||
10 | SRC_URI[sha256sum] = "878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff" | 10 | SRC_URI[sha256sum] = "878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-systemd_235.bb b/meta-python/recipes-devtools/python/python3-systemd_235.bb index 01d42cd5a..7a7d5a505 100644 --- a/meta-python/recipes-devtools/python/python3-systemd_235.bb +++ b/meta-python/recipes-devtools/python/python3-systemd_235.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4fbd65380cdd255951079008b364516c" | |||
5 | 5 | ||
6 | PYPI_PACKAGE = "systemd-python" | 6 | PYPI_PACKAGE = "systemd-python" |
7 | DEPENDS += "systemd (<=235)" | 7 | DEPENDS += "systemd (<=235)" |
8 | RDEPENDS:${PN} += "systemd ${PYTHON_PN}-syslog ${PYTHON_PN}-logging python3-syslog" | 8 | RDEPENDS:${PN} += "systemd python3-syslog python3-logging python3-syslog" |
9 | REQUIRED_DISTRO_FEATURES = "systemd" | 9 | REQUIRED_DISTRO_FEATURES = "systemd" |
10 | inherit pypi features_check pkgconfig setuptools3 | 10 | inherit pypi features_check pkgconfig setuptools3 |
11 | SRC_URI:append:libc-musl = " file://0001-Provide-implementation-of-strndupa-for-musl.patch" | 11 | SRC_URI:append:libc-musl = " file://0001-Provide-implementation-of-strndupa-for-musl.patch" |
diff --git a/meta-python/recipes-devtools/python/python3-tabulate_0.9.0.bb b/meta-python/recipes-devtools/python/python3-tabulate_0.9.0.bb index a25a1c66d..75e97355f 100644 --- a/meta-python/recipes-devtools/python/python3-tabulate_0.9.0.bb +++ b/meta-python/recipes-devtools/python/python3-tabulate_0.9.0.bb | |||
@@ -8,14 +8,14 @@ SRC_URI[sha256sum] = "0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c | |||
8 | inherit pypi python_setuptools_build_meta | 8 | inherit pypi python_setuptools_build_meta |
9 | 9 | ||
10 | DEPENDS += " \ | 10 | DEPENDS += " \ |
11 | ${PYTHON_PN}-setuptools-scm-native \ | 11 | python3-setuptools-scm-native \ |
12 | ${PYTHON_PN}-toml-native \ | 12 | python3-toml-native \ |
13 | " | 13 | " |
14 | 14 | ||
15 | RDEPENDS:${PN} += " \ | 15 | RDEPENDS:${PN} += " \ |
16 | ${PYTHON_PN}-html \ | 16 | python3-html \ |
17 | ${PYTHON_PN}-core \ | 17 | python3-core \ |
18 | ${PYTHON_PN}-io \ | 18 | python3-io \ |
19 | ${PYTHON_PN}-math \ | 19 | python3-math \ |
20 | ${PYTHON_PN}-profile \ | 20 | python3-profile \ |
21 | " | 21 | " |
diff --git a/meta-python/recipes-devtools/python/python3-telnetlib3_2.0.4.bb b/meta-python/recipes-devtools/python/python3-telnetlib3_2.0.4.bb index c7e650d94..c1e7c8e1f 100644 --- a/meta-python/recipes-devtools/python/python3-telnetlib3_2.0.4.bb +++ b/meta-python/recipes-devtools/python/python3-telnetlib3_2.0.4.bb | |||
@@ -11,5 +11,5 @@ PYPI_PACKAGE = "telnetlib3" | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN} = "\ | 13 | RDEPENDS:${PN} = "\ |
14 | ${PYTHON_PN}-asyncio \ | 14 | python3-asyncio \ |
15 | " | 15 | " |
diff --git a/meta-python/recipes-devtools/python/python3-term_2.5.bb b/meta-python/recipes-devtools/python/python3-term_2.5.bb index 3408b29c1..7d508ad80 100644 --- a/meta-python/recipes-devtools/python/python3-term_2.5.bb +++ b/meta-python/recipes-devtools/python/python3-term_2.5.bb | |||
@@ -8,5 +8,5 @@ SRC_URI[sha256sum] = "846fda941dbb8a7c9f246e99bf5ee731910fc4a4cc54b7e36457c133c9 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} = "\ | 10 | RDEPENDS:${PN} = "\ |
11 | ${PYTHON_PN}-io \ | 11 | python3-io \ |
12 | " | 12 | " |
diff --git a/meta-python/recipes-devtools/python/python3-termcolor_2.4.0.bb b/meta-python/recipes-devtools/python/python3-termcolor_2.4.0.bb index 212a29351..ea6b68399 100644 --- a/meta-python/recipes-devtools/python/python3-termcolor_2.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-termcolor_2.4.0.bb | |||
@@ -9,8 +9,8 @@ inherit pypi python_setuptools_build_meta | |||
9 | SRC_URI[sha256sum] = "aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a" | 9 | SRC_URI[sha256sum] = "aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a" |
10 | 10 | ||
11 | DEPENDS += " \ | 11 | DEPENDS += " \ |
12 | ${PYTHON_PN}-toml-native \ | 12 | python3-toml-native \ |
13 | ${PYTHON_PN}-hatch-vcs-native \ | 13 | python3-hatch-vcs-native \ |
14 | " | 14 | " |
15 | 15 | ||
16 | BBCLASSEXTEND = "native" | 16 | BBCLASSEXTEND = "native" |
diff --git a/meta-python/recipes-devtools/python/python3-tox_4.12.1.bb b/meta-python/recipes-devtools/python/python3-tox_4.12.1.bb index 6d092c6ff..7a3be97ad 100644 --- a/meta-python/recipes-devtools/python/python3-tox_4.12.1.bb +++ b/meta-python/recipes-devtools/python/python3-tox_4.12.1.bb | |||
@@ -12,23 +12,23 @@ BBCLASSEXTEND = "native nativesdk" | |||
12 | inherit pypi python_hatchling | 12 | inherit pypi python_hatchling |
13 | 13 | ||
14 | DEPENDS += "\ | 14 | DEPENDS += "\ |
15 | ${PYTHON_PN}-hatch-vcs-native \ | 15 | python3-hatch-vcs-native \ |
16 | " | 16 | " |
17 | 17 | ||
18 | RDEPENDS:${PN} += "\ | 18 | RDEPENDS:${PN} += "\ |
19 | ${PYTHON_PN}-cachetools \ | 19 | python3-cachetools \ |
20 | ${PYTHON_PN}-chardet \ | 20 | python3-chardet \ |
21 | ${PYTHON_PN}-colorama \ | 21 | python3-colorama \ |
22 | ${PYTHON_PN}-filelock \ | 22 | python3-filelock \ |
23 | ${PYTHON_PN}-packaging \ | 23 | python3-packaging \ |
24 | ${PYTHON_PN}-platformdirs \ | 24 | python3-platformdirs \ |
25 | ${PYTHON_PN}-pluggy \ | 25 | python3-pluggy \ |
26 | ${PYTHON_PN}-pyproject-api \ | 26 | python3-pyproject-api \ |
27 | ${PYTHON_PN}-tomli \ | 27 | python3-tomli \ |
28 | ${PYTHON_PN}-virtualenv \ | 28 | python3-virtualenv \ |
29 | " | 29 | " |
30 | 30 | ||
31 | # Install all built-in python3 modules, as the software tested with tox might | 31 | # Install all built-in python3 modules, as the software tested with tox might |
32 | # depend on it. Tox will attempt to install all required dependencies | 32 | # depend on it. Tox will attempt to install all required dependencies |
33 | # in a virtualenv using pip, but this obviously does not include the built-in modules. | 33 | # in a virtualenv using pip, but this obviously does not include the built-in modules. |
34 | RDEPENDS:${PN} += "${PYTHON_PN}-modules" | 34 | RDEPENDS:${PN} += "python3-modules" |
diff --git a/meta-python/recipes-devtools/python/python3-tqdm_4.66.1.bb b/meta-python/recipes-devtools/python/python3-tqdm_4.66.1.bb index 2a92e6189..ad46a33e0 100644 --- a/meta-python/recipes-devtools/python/python3-tqdm_4.66.1.bb +++ b/meta-python/recipes-devtools/python/python3-tqdm_4.66.1.bb | |||
@@ -9,7 +9,7 @@ SRC_URI[sha256sum] = "d88e651f9db8d8551a62556d3cff9e3034274ca5d66e93197cf2490e2d | |||
9 | 9 | ||
10 | inherit pypi python_setuptools_build_meta | 10 | inherit pypi python_setuptools_build_meta |
11 | 11 | ||
12 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 12 | DEPENDS += "python3-setuptools-scm-native" |
13 | 13 | ||
14 | RDEPENDS:${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | python3-logging \ | 15 | python3-logging \ |
diff --git a/meta-python/recipes-devtools/python/python3-trafaret-config_2.0.2.bb b/meta-python/recipes-devtools/python/python3-trafaret-config_2.0.2.bb index 5c5754740..eee9ab88b 100644 --- a/meta-python/recipes-devtools/python/python3-trafaret-config_2.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-trafaret-config_2.0.2.bb | |||
@@ -8,8 +8,8 @@ SRC_URI[sha256sum] = "440b6b49e5e975f9a640a2519abb2feddd96eb2aeb1715f87f947a7a07 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-trafaret \ | 11 | python3-trafaret \ |
12 | ${PYTHON_PN}-pyyaml \ | 12 | python3-pyyaml \ |
13 | " | 13 | " |
14 | 14 | ||
15 | BBCLASSEXTEND = "native nativesdk" | 15 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-trafaret_2.1.1.bb b/meta-python/recipes-devtools/python/python3-trafaret_2.1.1.bb index 97c56abde..5b24206a2 100644 --- a/meta-python/recipes-devtools/python/python3-trafaret_2.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-trafaret_2.1.1.bb | |||
@@ -8,9 +8,9 @@ SRC_URI[sha256sum] = "d9d00800318fbd343fdfb3353e947b2ebb5557159c844696c5ac24846f | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-datetime \ | 11 | python3-datetime \ |
12 | ${PYTHON_PN}-numbers \ | 12 | python3-numbers \ |
13 | ${PYTHON_PN}-urllib3 \ | 13 | python3-urllib3 \ |
14 | " | 14 | " |
15 | 15 | ||
16 | BBCLASSEXTEND = "native nativesdk" | 16 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-traitlets_5.14.1.bb b/meta-python/recipes-devtools/python/python3-traitlets_5.14.1.bb index 0089d6c6e..e650906aa 100644 --- a/meta-python/recipes-devtools/python/python3-traitlets_5.14.1.bb +++ b/meta-python/recipes-devtools/python/python3-traitlets_5.14.1.bb | |||
@@ -8,6 +8,6 @@ SRC_URI[sha256sum] = "8585105b371a04b8316a43d5ce29c098575c2e477850b62b848b964f14 | |||
8 | inherit pypi python_hatchling | 8 | inherit pypi python_hatchling |
9 | 9 | ||
10 | RDEPENDS:${PN} = "\ | 10 | RDEPENDS:${PN} = "\ |
11 | ${PYTHON_PN}-ipython-genutils \ | 11 | python3-ipython-genutils \ |
12 | ${PYTHON_PN}-decorator \ | 12 | python3-decorator \ |
13 | " | 13 | " |
diff --git a/meta-python/recipes-devtools/python/python3-twine_4.0.2.bb b/meta-python/recipes-devtools/python/python3-twine_4.0.2.bb index 161b4b221..2c73861f5 100644 --- a/meta-python/recipes-devtools/python/python3-twine_4.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-twine_4.0.2.bb | |||
@@ -8,11 +8,11 @@ SRC_URI[sha256sum] = "9e102ef5fdd5a20661eb88fad46338806c3bd32cf1db729603fe3697b1 | |||
8 | inherit pypi python_setuptools_build_meta | 8 | inherit pypi python_setuptools_build_meta |
9 | 9 | ||
10 | DEPENDS += "\ | 10 | DEPENDS += "\ |
11 | ${PYTHON_PN}-setuptools-scm-native \ | 11 | python3-setuptools-scm-native \ |
12 | " | 12 | " |
13 | 13 | ||
14 | RDEPENDS:${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | ${PYTHON_PN}-importlib-metadata \ | 15 | python3-importlib-metadata \ |
16 | " | 16 | " |
17 | 17 | ||
18 | BBCLASSEXTEND = "native" | 18 | BBCLASSEXTEND = "native" |
diff --git a/meta-python/recipes-devtools/python/python3-twisted_22.10.0.bb b/meta-python/recipes-devtools/python/python3-twisted_22.10.0.bb index 767ace114..72a173e6f 100644 --- a/meta-python/recipes-devtools/python/python3-twisted_22.10.0.bb +++ b/meta-python/recipes-devtools/python/python3-twisted_22.10.0.bb | |||
@@ -39,7 +39,7 @@ PACKAGES =+ "\ | |||
39 | " | 39 | " |
40 | 40 | ||
41 | DEPENDS += " \ | 41 | DEPENDS += " \ |
42 | ${PYTHON_PN}-incremental-native \ | 42 | python3-incremental-native \ |
43 | " | 43 | " |
44 | 44 | ||
45 | RDEPENDS:${PN} = "\ | 45 | RDEPENDS:${PN} = "\ |
@@ -56,22 +56,22 @@ RDEPENDS:${PN} = "\ | |||
56 | ${PN}-zsh \ | 56 | ${PN}-zsh \ |
57 | " | 57 | " |
58 | 58 | ||
59 | RDEPENDS:${PN}-core = "${PYTHON_PN}-appdirs \ | 59 | RDEPENDS:${PN}-core = "python3-appdirs \ |
60 | ${PYTHON_PN}-asyncio \ | 60 | python3-asyncio \ |
61 | ${PYTHON_PN}-automat \ | 61 | python3-automat \ |
62 | ${PYTHON_PN}-constantly \ | 62 | python3-constantly \ |
63 | ${PYTHON_PN}-core \ | 63 | python3-core \ |
64 | ${PYTHON_PN}-debugger \ | 64 | python3-debugger \ |
65 | ${PYTHON_PN}-hyperlink \ | 65 | python3-hyperlink \ |
66 | ${PYTHON_PN}-incremental \ | 66 | python3-incremental \ |
67 | ${PYTHON_PN}-pyhamcrest \ | 67 | python3-pyhamcrest \ |
68 | ${PYTHON_PN}-pyserial \ | 68 | python3-pyserial \ |
69 | ${PYTHON_PN}-typing-extensions \ | 69 | python3-typing-extensions \ |
70 | ${PYTHON_PN}-unixadmin \ | 70 | python3-unixadmin \ |
71 | ${PYTHON_PN}-zopeinterface \ | 71 | python3-zopeinterface \ |
72 | " | 72 | " |
73 | RDEPENDS:${PN}-test = "${PN}" | 73 | RDEPENDS:${PN}-test = "${PN}" |
74 | RDEPENDS:${PN}-conch = "${PN}-core ${PN}-protocols ${PYTHON_PN}-bcrypt ${PYTHON_PN}-cryptography ${PYTHON_PN}-pyasn1 ${PYTHON_PN}-pickle" | 74 | RDEPENDS:${PN}-conch = "${PN}-core ${PN}-protocols python3-bcrypt python3-cryptography python3-pyasn1 python3-pickle" |
75 | RDEPENDS:${PN}-mail = "${PN}-core ${PN}-protocols" | 75 | RDEPENDS:${PN}-mail = "${PN}-core ${PN}-protocols" |
76 | RDEPENDS:${PN}-names = "${PN}-core" | 76 | RDEPENDS:${PN}-names = "${PN}-core" |
77 | RDEPENDS:${PN}-news = "${PN}-core ${PN}-protocols" | 77 | RDEPENDS:${PN}-news = "${PN}-core ${PN}-protocols" |
diff --git a/meta-python/recipes-devtools/python/python3-twitter_4.14.0.bb b/meta-python/recipes-devtools/python/python3-twitter_4.14.0.bb index 68908bb64..23ea99625 100644 --- a/meta-python/recipes-devtools/python/python3-twitter_4.14.0.bb +++ b/meta-python/recipes-devtools/python/python3-twitter_4.14.0.bb | |||
@@ -11,9 +11,9 @@ PYPI_PACKAGE = "tweepy" | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-pip \ | 14 | python3-pip \ |
15 | ${PYTHON_PN}-pysocks \ | 15 | python3-pysocks \ |
16 | ${PYTHON_PN}-requests \ | 16 | python3-requests \ |
17 | ${PYTHON_PN}-requests-oauthlib \ | 17 | python3-requests-oauthlib \ |
18 | ${PYTHON_PN}-six \ | 18 | python3-six \ |
19 | " | 19 | " |
diff --git a/meta-python/recipes-devtools/python/python3-txaio_23.1.1.bb b/meta-python/recipes-devtools/python/python3-txaio_23.1.1.bb index 3b0562421..b14e35381 100644 --- a/meta-python/recipes-devtools/python/python3-txaio_23.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-txaio_23.1.1.bb | |||
@@ -8,5 +8,5 @@ SRC_URI[sha256sum] = "f9a9216e976e5e3246dfd112ad7ad55ca915606b60b84a757ac769bd40 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-twisted \ | 11 | python3-twisted \ |
12 | " | 12 | " |
diff --git a/meta-python/recipes-devtools/python/python3-unoconv_0.9.0.bb b/meta-python/recipes-devtools/python/python3-unoconv_0.9.0.bb index be1dab476..8bfb8a6de 100644 --- a/meta-python/recipes-devtools/python/python3-unoconv_0.9.0.bb +++ b/meta-python/recipes-devtools/python/python3-unoconv_0.9.0.bb | |||
@@ -11,9 +11,9 @@ inherit pypi setuptools3 | |||
11 | PYPI_PACKAGE="unoconv" | 11 | PYPI_PACKAGE="unoconv" |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-setuptools \ | 14 | python3-setuptools \ |
15 | ${PYTHON_PN}-core \ | 15 | python3-core \ |
16 | ${PYTHON_PN}-shell \ | 16 | python3-shell \ |
17 | " | 17 | " |
18 | 18 | ||
19 | do_install:append() { | 19 | do_install:append() { |
diff --git a/meta-python/recipes-devtools/python/python3-virtualenv_20.25.0.bb b/meta-python/recipes-devtools/python/python3-virtualenv_20.25.0.bb index 0a9ba5945..1858fee25 100644 --- a/meta-python/recipes-devtools/python/python3-virtualenv_20.25.0.bb +++ b/meta-python/recipes-devtools/python/python3-virtualenv_20.25.0.bb | |||
@@ -12,11 +12,11 @@ BBCLASSEXTEND = "native nativesdk" | |||
12 | inherit pypi python_hatchling | 12 | inherit pypi python_hatchling |
13 | 13 | ||
14 | DEPENDS += "\ | 14 | DEPENDS += "\ |
15 | ${PYTHON_PN}-hatch-vcs-native \ | 15 | python3-hatch-vcs-native \ |
16 | " | 16 | " |
17 | 17 | ||
18 | RDEPENDS:${PN} += " \ | 18 | RDEPENDS:${PN} += " \ |
19 | ${PYTHON_PN}-distlib \ | 19 | python3-distlib \ |
20 | ${PYTHON_PN}-filelock \ | 20 | python3-filelock \ |
21 | ${PYTHON_PN}-platformdirs \ | 21 | python3-platformdirs \ |
22 | " | 22 | " |
diff --git a/meta-python/recipes-devtools/python/python3-watchdog_3.0.0.bb b/meta-python/recipes-devtools/python/python3-watchdog_3.0.0.bb index bcd64892a..bdcd4237b 100644 --- a/meta-python/recipes-devtools/python/python3-watchdog_3.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-watchdog_3.0.0.bb | |||
@@ -1,5 +1,5 @@ | |||
1 | SUMMARY = "Filesystem events monitoring" | 1 | SUMMARY = "Filesystem events monitoring" |
2 | DEPENDS = "${PYTHON_PN}-argh" | 2 | DEPENDS = "python3-argh" |
3 | 3 | ||
4 | LICENSE = "Apache-2.0" | 4 | LICENSE = "Apache-2.0" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" |
@@ -9,10 +9,10 @@ SRC_URI[sha256sum] = "4d98a320595da7a7c5a18fc48cb633c2e73cda78f93cac2ef42d42bf60 | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} = " \ | 11 | RDEPENDS:${PN} = " \ |
12 | ${PYTHON_PN}-argh \ | 12 | python3-argh \ |
13 | ${PYTHON_PN}-pathtools3 \ | 13 | python3-pathtools3 \ |
14 | ${PYTHON_PN}-pyyaml \ | 14 | python3-pyyaml \ |
15 | ${PYTHON_PN}-requests \ | 15 | python3-requests \ |
16 | " | 16 | " |
17 | 17 | ||
18 | BBCLASSEXTEND = "native nativesdk" | 18 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-web3_6.15.1.bb b/meta-python/recipes-devtools/python/python3-web3_6.15.1.bb index 00b19bb24..4eea0f052 100644 --- a/meta-python/recipes-devtools/python/python3-web3_6.15.1.bb +++ b/meta-python/recipes-devtools/python/python3-web3_6.15.1.bb | |||
@@ -9,18 +9,18 @@ SRC_URI[sha256sum] = "f9e7eefc1b3c3d194868a4ef9583b625c18ea3f31a48ebe143183db748 | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-aiohttp \ | 12 | python3-aiohttp \ |
13 | ${PYTHON_PN}-eth-abi \ | 13 | python3-eth-abi \ |
14 | ${PYTHON_PN}-eth-account \ | 14 | python3-eth-account \ |
15 | ${PYTHON_PN}-eth-hash \ | 15 | python3-eth-hash \ |
16 | ${PYTHON_PN}-eth-typing \ | 16 | python3-eth-typing \ |
17 | ${PYTHON_PN}-eth-utils \ | 17 | python3-eth-utils \ |
18 | ${PYTHON_PN}-hexbytes \ | 18 | python3-hexbytes \ |
19 | ${PYTHON_PN}-jsonschema \ | 19 | python3-jsonschema \ |
20 | ${PYTHON_PN}-protobuf \ | 20 | python3-protobuf \ |
21 | ${PYTHON_PN}-pydantic \ | 21 | python3-pydantic \ |
22 | ${PYTHON_PN}-requests \ | 22 | python3-requests \ |
23 | ${PYTHON_PN}-typing-extensions \ | 23 | python3-typing-extensions \ |
24 | ${PYTHON_PN}-websockets \ | 24 | python3-websockets \ |
25 | ${PYTHON_PN}-pyunormalize \ | 25 | python3-pyunormalize \ |
26 | " | 26 | " |
diff --git a/meta-python/recipes-devtools/python/python3-webargs_8.4.0.bb b/meta-python/recipes-devtools/python/python3-webargs_8.4.0.bb index ea830807c..78af01332 100644 --- a/meta-python/recipes-devtools/python/python3-webargs_8.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-webargs_8.4.0.bb | |||
@@ -8,10 +8,10 @@ inherit pypi setuptools3 | |||
8 | SRC_URI[sha256sum] = "ea99368214a4ce613924be99d71db58c269631e95eff4fa09b7354e52dc006a5" | 8 | SRC_URI[sha256sum] = "ea99368214a4ce613924be99d71db58c269631e95eff4fa09b7354e52dc006a5" |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-marshmallow \ | 11 | python3-marshmallow \ |
12 | ${PYTHON_PN}-packaging \ | 12 | python3-packaging \ |
13 | ${PYTHON_PN}-core \ | 13 | python3-core \ |
14 | ${PYTHON_PN}-json \ | 14 | python3-json \ |
15 | ${PYTHON_PN}-asyncio \ | 15 | python3-asyncio \ |
16 | ${PYTHON_PN}-logging \ | 16 | python3-logging \ |
17 | " | 17 | " |
diff --git a/meta-python/recipes-devtools/python/python3-webencodings_0.5.1.bb b/meta-python/recipes-devtools/python/python3-webencodings_0.5.1.bb index ab33ce66e..cedc79081 100644 --- a/meta-python/recipes-devtools/python/python3-webencodings_0.5.1.bb +++ b/meta-python/recipes-devtools/python/python3-webencodings_0.5.1.bb | |||
@@ -8,8 +8,8 @@ SRC_URI[sha256sum] = "b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab1674858 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-codecs \ | 11 | python3-codecs \ |
12 | ${PYTHON_PN}-json \ | 12 | python3-json \ |
13 | " | 13 | " |
14 | 14 | ||
15 | BBCLASSEXTEND = "native nativesdk" | 15 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-websocket-client_1.7.0.bb b/meta-python/recipes-devtools/python/python3-websocket-client_1.7.0.bb index b202d6855..fc73f1b0a 100644 --- a/meta-python/recipes-devtools/python/python3-websocket-client_1.7.0.bb +++ b/meta-python/recipes-devtools/python/python3-websocket-client_1.7.0.bb | |||
@@ -12,6 +12,6 @@ SRC_URI[sha256sum] = "10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c778 | |||
12 | inherit pypi setuptools3 | 12 | inherit pypi setuptools3 |
13 | 13 | ||
14 | RDEPENDS:${PN} = "\ | 14 | RDEPENDS:${PN} = "\ |
15 | ${PYTHON_PN}-six \ | 15 | python3-six \ |
16 | ${PYTHON_PN}-logging \ | 16 | python3-logging \ |
17 | " | 17 | " |
diff --git a/meta-python/recipes-devtools/python/python3-werkzeug_3.0.1.bb b/meta-python/recipes-devtools/python/python3-werkzeug_3.0.1.bb index 0c3308d65..f8d2769b4 100644 --- a/meta-python/recipes-devtools/python/python3-werkzeug_3.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-werkzeug_3.0.1.bb | |||
@@ -15,9 +15,9 @@ SRC_URI[sha256sum] = "507e811ecea72b18a404947aded4b3390e1db8f826b494d76550ef45bb | |||
15 | inherit pypi python_flit_core | 15 | inherit pypi python_flit_core |
16 | 16 | ||
17 | RDEPENDS:${PN} += " \ | 17 | RDEPENDS:${PN} += " \ |
18 | ${PYTHON_PN}-markupsafe \ | 18 | python3-markupsafe \ |
19 | ${PYTHON_PN}-logging \ | 19 | python3-logging \ |
20 | ${PYTHON_PN}-profile \ | 20 | python3-profile \ |
21 | ${PYTHON_PN}-compression \ | 21 | python3-compression \ |
22 | ${PYTHON_PN}-json \ | 22 | python3-json \ |
23 | " | 23 | " |
diff --git a/meta-python/recipes-devtools/python/python3-wrapt_1.16.0.bb b/meta-python/recipes-devtools/python/python3-wrapt_1.16.0.bb index f99b552c6..84c052844 100644 --- a/meta-python/recipes-devtools/python/python3-wrapt_1.16.0.bb +++ b/meta-python/recipes-devtools/python/python3-wrapt_1.16.0.bb | |||
@@ -9,8 +9,8 @@ SRC_URI[sha256sum] = "5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06 | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN}:class-target += "\ | 11 | RDEPENDS:${PN}:class-target += "\ |
12 | ${PYTHON_PN}-stringold \ | 12 | python3-stringold \ |
13 | ${PYTHON_PN}-threading \ | 13 | python3-threading \ |
14 | " | 14 | " |
15 | 15 | ||
16 | BBCLASSEXTEND = "native" | 16 | BBCLASSEXTEND = "native" |
diff --git a/meta-python/recipes-devtools/python/python3-wtforms_3.1.2.bb b/meta-python/recipes-devtools/python/python3-wtforms_3.1.2.bb index 1459538ea..b3ba14ff7 100644 --- a/meta-python/recipes-devtools/python/python3-wtforms_3.1.2.bb +++ b/meta-python/recipes-devtools/python/python3-wtforms_3.1.2.bb | |||
@@ -13,12 +13,12 @@ UPSTREAM_CHECK_REGEX = "/WTForms/(?P<pver>(\d+[\.\-_]*)+)" | |||
13 | inherit pypi python_hatchling | 13 | inherit pypi python_hatchling |
14 | 14 | ||
15 | DEPENDS += "\ | 15 | DEPENDS += "\ |
16 | ${PYTHON_PN}-pip-native \ | 16 | python3-pip-native \ |
17 | ${PYTHON_PN}-babel-native \ | 17 | python3-babel-native \ |
18 | " | 18 | " |
19 | 19 | ||
20 | RDEPENDS:${PN} += "\ | 20 | RDEPENDS:${PN} += "\ |
21 | ${PYTHON_PN}-netserver \ | 21 | python3-netserver \ |
22 | ${PYTHON_PN}-numbers \ | 22 | python3-numbers \ |
23 | ${PYTHON_PN}-markupsafe \ | 23 | python3-markupsafe \ |
24 | " | 24 | " |
diff --git a/meta-python/recipes-devtools/python/python3-xmlschema_3.0.1.bb b/meta-python/recipes-devtools/python/python3-xmlschema_3.0.1.bb index 890743b0c..97dc68378 100644 --- a/meta-python/recipes-devtools/python/python3-xmlschema_3.0.1.bb +++ b/meta-python/recipes-devtools/python/python3-xmlschema_3.0.1.bb | |||
@@ -9,12 +9,12 @@ PYPI_PACKAGE = "xmlschema" | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | DEPENDS += "\ | 11 | DEPENDS += "\ |
12 | ${PYTHON_PN}-elementpath-native \ | 12 | python3-elementpath-native \ |
13 | " | 13 | " |
14 | 14 | ||
15 | RDEPENDS:${PN} += "\ | 15 | RDEPENDS:${PN} += "\ |
16 | ${PYTHON_PN}-elementpath \ | 16 | python3-elementpath \ |
17 | ${PYTHON_PN}-modules \ | 17 | python3-modules \ |
18 | " | 18 | " |
19 | 19 | ||
20 | BBCLASSEXTEND = "native nativesdk" | 20 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb b/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb index 80fe94555..482f0c641 100644 --- a/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb +++ b/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb | |||
@@ -14,6 +14,6 @@ do_install:append() { | |||
14 | } | 14 | } |
15 | 15 | ||
16 | RDEPENDS:${PN} += " \ | 16 | RDEPENDS:${PN} += " \ |
17 | ${PYTHON_PN}-logging \ | 17 | python3-logging \ |
18 | " | 18 | " |
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_6.2.1.1.bb b/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_6.2.1.1.bb index 254d9d035..f4a51f318 100644 --- a/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_6.2.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_6.2.1.1.bb | |||
@@ -9,8 +9,8 @@ PYPI_PACKAGE = "XStatic-Font-Awesome" | |||
9 | SRC_URI[sha256sum] = "f075871096128638f2e1539020d8227754c3d885dd68e7ee6de9a01235076828" | 9 | SRC_URI[sha256sum] = "f075871096128638f2e1539020d8227754c3d885dd68e7ee6de9a01235076828" |
10 | 10 | ||
11 | DEPENDS += " \ | 11 | DEPENDS += " \ |
12 | ${PYTHON_PN}-xstatic \ | 12 | python3-xstatic \ |
13 | ${PYTHON_PN}-pip \ | 13 | python3-pip \ |
14 | " | 14 | " |
15 | 15 | ||
16 | inherit pypi setuptools3 | 16 | inherit pypi setuptools3 |
diff --git a/meta-python/recipes-devtools/python/python3-xstatic_1.0.3.bb b/meta-python/recipes-devtools/python/python3-xstatic_1.0.3.bb index df4b7c888..22bfa365f 100644 --- a/meta-python/recipes-devtools/python/python3-xstatic_1.0.3.bb +++ b/meta-python/recipes-devtools/python/python3-xstatic_1.0.3.bb | |||
@@ -9,7 +9,7 @@ PYPI_PACKAGE = "XStatic" | |||
9 | SRC_URI[sha256sum] = "402544cc9e179489441054f09c807804e115ea246907de87c0355fb4f5a31268" | 9 | SRC_URI[sha256sum] = "402544cc9e179489441054f09c807804e115ea246907de87c0355fb4f5a31268" |
10 | 10 | ||
11 | DEPENDS += " \ | 11 | DEPENDS += " \ |
12 | ${PYTHON_PN}-pip \ | 12 | python3-pip \ |
13 | " | 13 | " |
14 | 14 | ||
15 | inherit pypi setuptools3 | 15 | inherit pypi setuptools3 |
diff --git a/meta-python/recipes-devtools/python/python3-yamlloader_1.3.2.bb b/meta-python/recipes-devtools/python/python3-yamlloader_1.3.2.bb index 030ad8812..93c58c11c 100644 --- a/meta-python/recipes-devtools/python/python3-yamlloader_1.3.2.bb +++ b/meta-python/recipes-devtools/python/python3-yamlloader_1.3.2.bb | |||
@@ -8,5 +8,5 @@ SRC_URI[sha256sum] = "7dbd98421d8090c521655f1b06ca030067f29df5253a8878126bce3a90 | |||
8 | inherit pypi python_setuptools_build_meta | 8 | inherit pypi python_setuptools_build_meta |
9 | 9 | ||
10 | RDEPENDS:${PN}:class-target += "\ | 10 | RDEPENDS:${PN}:class-target += "\ |
11 | ${PYTHON_PN}-pyyaml \ | 11 | python3-pyyaml \ |
12 | " | 12 | " |
diff --git a/meta-python/recipes-devtools/python/python3-zeroconf_0.131.0.bb b/meta-python/recipes-devtools/python/python3-zeroconf_0.131.0.bb index 1963d899b..4c7bebe76 100644 --- a/meta-python/recipes-devtools/python/python3-zeroconf_0.131.0.bb +++ b/meta-python/recipes-devtools/python/python3-zeroconf_0.131.0.bb | |||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "90c431e99192a044a5e0217afd7ca0ca9824af93190332e6f7baf4da53 | |||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools3 |
9 | 9 | ||
10 | RDEPENDS:${PN} += " \ | 10 | RDEPENDS:${PN} += " \ |
11 | ${PYTHON_PN}-ifaddr \ | 11 | python3-ifaddr \ |
12 | ${PYTHON_PN}-asyncio \ | 12 | python3-asyncio \ |
13 | ${PYTHON_PN}-async-timeout \ | 13 | python3-async-timeout \ |
14 | " | 14 | " |
diff --git a/meta-python/recipes-devtools/python/python3-zopeinterface_6.1.bb b/meta-python/recipes-devtools/python/python3-zopeinterface_6.1.bb index 07e329a4a..149b6583a 100644 --- a/meta-python/recipes-devtools/python/python3-zopeinterface_6.1.bb +++ b/meta-python/recipes-devtools/python/python3-zopeinterface_6.1.bb | |||
@@ -11,7 +11,7 @@ PACKAGES =. "${PN}-test " | |||
11 | 11 | ||
12 | RPROVIDES:${PN} += "zope-interfaces" | 12 | RPROVIDES:${PN} += "zope-interfaces" |
13 | 13 | ||
14 | RDEPENDS:${PN}:class-target += "${PYTHON_PN}-datetime" | 14 | RDEPENDS:${PN}:class-target += "python3-datetime" |
15 | RDEPENDS:${PN}-test += "python3-unittest python3-doctest" | 15 | RDEPENDS:${PN}-test += "python3-unittest python3-doctest" |
16 | 16 | ||
17 | FILES:${PN}-dbg += "${PYTHON_SITEPACKAGES_DIR}/*.egg/*/*/.debug" | 17 | FILES:${PN}-dbg += "${PYTHON_SITEPACKAGES_DIR}/*.egg/*/*/.debug" |
diff --git a/meta-python/recipes-devtools/python3-gspread/python3-gspread_6.0.1.bb b/meta-python/recipes-devtools/python3-gspread/python3-gspread_6.0.1.bb index 7854b7562..7a27bf8db 100644 --- a/meta-python/recipes-devtools/python3-gspread/python3-gspread_6.0.1.bb +++ b/meta-python/recipes-devtools/python3-gspread/python3-gspread_6.0.1.bb | |||
@@ -6,9 +6,9 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9488e21983675fa56dc05af558b83e2f" | |||
6 | SRC_URI[sha256sum] = "8c8bf83be676a019d3a483455d8b17b442f2acfc620172f245422ca4fc960dd0" | 6 | SRC_URI[sha256sum] = "8c8bf83be676a019d3a483455d8b17b442f2acfc620172f245422ca4fc960dd0" |
7 | 7 | ||
8 | RDEPENDS:${PN} = " \ | 8 | RDEPENDS:${PN} = " \ |
9 | ${PYTHON_PN}-google-auth \ | 9 | python3-google-auth \ |
10 | ${PYTHON_PN}-google-auth-oauthlib \ | 10 | python3-google-auth-oauthlib \ |
11 | ${PYTHON_PN}-strenum \ | 11 | python3-strenum \ |
12 | " | 12 | " |
13 | 13 | ||
14 | inherit pypi python_flit_core | 14 | inherit pypi python_flit_core |
diff --git a/meta-python/recipes-devtools/python3_oauth2client/python3-oauth2client_4.1.3.bb b/meta-python/recipes-devtools/python3_oauth2client/python3-oauth2client_4.1.3.bb index c0b111838..d87e289c5 100644 --- a/meta-python/recipes-devtools/python3_oauth2client/python3-oauth2client_4.1.3.bb +++ b/meta-python/recipes-devtools/python3_oauth2client/python3-oauth2client_4.1.3.bb | |||
@@ -9,11 +9,11 @@ inherit pypi | |||
9 | SRC_URI[sha256sum] = "d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6" | 9 | SRC_URI[sha256sum] = "d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6" |
10 | 10 | ||
11 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
12 | ${PYTHON_PN}-httplib2 \ | 12 | python3-httplib2 \ |
13 | ${PYTHON_PN}-pyasn1 \ | 13 | python3-pyasn1 \ |
14 | ${PYTHON_PN}-pyasn1-modules \ | 14 | python3-pyasn1-modules \ |
15 | ${PYTHON_PN}-rsa \ | 15 | python3-rsa \ |
16 | ${PYTHON_PN}-six \ | 16 | python3-six \ |
17 | " | 17 | " |
18 | 18 | ||
19 | inherit setuptools3 | 19 | inherit setuptools3 |
diff --git a/meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.5.bb b/meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.5.bb index 0478d0d5c..8c9262afb 100644 --- a/meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.5.bb +++ b/meta-python/recipes-extended/python-pyephem/python3-pyephem_4.1.5.bb | |||
@@ -11,6 +11,6 @@ PYPI_PACKAGE = "ephem" | |||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools3 |
12 | 12 | ||
13 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
14 | ${PYTHON_PN}-datetime \ | 14 | python3-datetime \ |
15 | ${PYTHON_PN}-math \ | 15 | python3-math \ |
16 | " | 16 | " |
diff --git a/meta-python/recipes-extended/python-rich/python3-rich_13.7.0.bb b/meta-python/recipes-extended/python-rich/python3-rich_13.7.0.bb index 5a1d5ddb8..959f0d51a 100644 --- a/meta-python/recipes-extended/python-rich/python3-rich_13.7.0.bb +++ b/meta-python/recipes-extended/python-rich/python3-rich_13.7.0.bb | |||
@@ -12,4 +12,4 @@ SRC_URI[sha256sum] = "5cb5123b5cf9ee70584244246816e9114227e0b98ad9176eede6ad54bf | |||
12 | 12 | ||
13 | inherit pypi python_poetry_core | 13 | inherit pypi python_poetry_core |
14 | 14 | ||
15 | RDEPENDS:${PN} = "${PYTHON_PN}-pygments" | 15 | RDEPENDS:${PN} = "python3-pygments" |
diff --git a/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.8.2.bb b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.8.2.bb index e18aa83df..69578ba84 100644 --- a/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.8.2.bb +++ b/meta-python/recipes-extended/python3-portalocker/python3-portalocker_2.8.2.bb | |||
@@ -13,6 +13,6 @@ inherit pypi python_setuptools_build_meta | |||
13 | BBCLASSEXTEND = "native nativesdk" | 13 | BBCLASSEXTEND = "native nativesdk" |
14 | 14 | ||
15 | RDEPENDS:${PN} += " \ | 15 | RDEPENDS:${PN} += " \ |
16 | ${PYTHON_PN}-fcntl \ | 16 | python3-fcntl \ |
17 | ${PYTHON_PN}-logging \ | 17 | python3-logging \ |
18 | " | 18 | " |
diff --git a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.2.0.bb b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.2.0.bb index ab631b256..89c05c2a6 100644 --- a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.2.0.bb +++ b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.2.0.bb | |||
@@ -9,24 +9,24 @@ SRC_URI[sha256sum] = "921fb57ea2ae3ae2806e18895bb0457697f27221b345c8b05afa4cb304 | |||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools3 |
10 | 10 | ||
11 | RDEPENDS:${PN}:class-target += "\ | 11 | RDEPENDS:${PN}:class-target += "\ |
12 | ${PYTHON_PN}-ply \ | 12 | python3-ply \ |
13 | ${PYTHON_PN}-pyyaml \ | 13 | python3-pyyaml \ |
14 | ${PYTHON_PN}-six \ | 14 | python3-six \ |
15 | ${PYTHON_PN}-pywbem \ | 15 | python3-pywbem \ |
16 | ${PYTHON_PN}-click \ | 16 | python3-click \ |
17 | ${PYTHON_PN}-requests \ | 17 | python3-requests \ |
18 | ${PYTHON_PN}-prompt-toolkit \ | 18 | python3-prompt-toolkit \ |
19 | ${PYTHON_PN}-mock \ | 19 | python3-mock \ |
20 | ${PYTHON_PN}-packaging \ | 20 | python3-packaging \ |
21 | ${PYTHON_PN}-nocasedict \ | 21 | python3-nocasedict \ |
22 | ${PYTHON_PN}-yamlloader \ | 22 | python3-yamlloader \ |
23 | ${PYTHON_PN}-click-repl \ | 23 | python3-click-repl \ |
24 | ${PYTHON_PN}-click-spinner \ | 24 | python3-click-spinner \ |
25 | ${PYTHON_PN}-asciitree \ | 25 | python3-asciitree \ |
26 | ${PYTHON_PN}-tabulate \ | 26 | python3-tabulate \ |
27 | ${PYTHON_PN}-pydicti \ | 27 | python3-pydicti \ |
28 | ${PYTHON_PN}-nocaselist \ | 28 | python3-nocaselist \ |
29 | ${PYTHON_PN}-custom-inherit \ | 29 | python3-custom-inherit \ |
30 | " | 30 | " |
31 | 31 | ||
32 | BBCLASSEXTEND = "native" | 32 | BBCLASSEXTEND = "native" |