diff options
47 files changed, 51 insertions, 94 deletions
diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.8.1.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.8.1.bb index 1d8434e3ca..3a4c510144 100644 --- a/meta-python/recipes-devtools/python/python3-aiohttp_3.8.1.bb +++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.8.1.bb | |||
@@ -7,7 +7,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=8074d6c6e217873b2a018a4522243ea3" | |||
7 | SRC_URI[sha256sum] = "fc5471e1a54de15ef71c1bc6ebe80d4dc681ea600e68bfd1cbce40427f0b7578" | 7 | SRC_URI[sha256sum] = "fc5471e1a54de15ef71c1bc6ebe80d4dc681ea600e68bfd1cbce40427f0b7578" |
8 | 8 | ||
9 | PYPI_PACKAGE = "aiohttp" | 9 | PYPI_PACKAGE = "aiohttp" |
10 | inherit setuptools3 pypi | 10 | inherit setuptools_build_meta pypi |
11 | |||
11 | RDEPENDS:${PN} = "\ | 12 | RDEPENDS:${PN} = "\ |
12 | ${PYTHON_PN}-async-timeout \ | 13 | ${PYTHON_PN}-async-timeout \ |
13 | ${PYTHON_PN}-attrs \ | 14 | ${PYTHON_PN}-attrs \ |
diff --git a/meta-python/recipes-devtools/python/python3-ansi2html_1.7.0.bb b/meta-python/recipes-devtools/python/python3-ansi2html_1.7.0.bb index 0a81ebdded..9a6e0f7a3a 100644 --- a/meta-python/recipes-devtools/python/python3-ansi2html_1.7.0.bb +++ b/meta-python/recipes-devtools/python/python3-ansi2html_1.7.0.bb | |||
@@ -7,7 +7,7 @@ PYPI_PACKAGE = "ansi2html" | |||
7 | 7 | ||
8 | SRC_URI[sha256sum] = "69316be8c68ac91c5582d397c2890e69c993cc7cda52062ac7e45fcb660d8edc" | 8 | SRC_URI[sha256sum] = "69316be8c68ac91c5582d397c2890e69c993cc7cda52062ac7e45fcb660d8edc" |
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools_build_meta |
11 | 11 | ||
12 | DEPENDS += " \ | 12 | DEPENDS += " \ |
13 | ${PYTHON_PN}-setuptools-scm-native \ | 13 | ${PYTHON_PN}-setuptools-scm-native \ |
@@ -18,8 +18,3 @@ RDEPENDS:${PN} = " \ | |||
18 | ${PYTHON_PN}-six \ | 18 | ${PYTHON_PN}-six \ |
19 | ${PYTHON_PN}-compression \ | 19 | ${PYTHON_PN}-compression \ |
20 | " | 20 | " |
21 | |||
22 | do_compile:prepend() { | ||
23 | echo "from setuptools import setup" > ${S}/setup.py | ||
24 | echo "setup()" >> ${S}/setup.py | ||
25 | } | ||
diff --git a/meta-python/recipes-devtools/python/python3-asttokens_2.0.5.bb b/meta-python/recipes-devtools/python/python3-asttokens_2.0.5.bb index 429a56bae6..d45e70ce8a 100644 --- a/meta-python/recipes-devtools/python/python3-asttokens_2.0.5.bb +++ b/meta-python/recipes-devtools/python/python3-asttokens_2.0.5.bb | |||
@@ -5,13 +5,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e" | |||
5 | 5 | ||
6 | PYPI_PACKAGE = "asttokens" | 6 | PYPI_PACKAGE = "asttokens" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | SRC_URI[sha256sum] = "9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5" | 10 | SRC_URI[sha256sum] = "9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5" |
11 | 11 | ||
12 | DEPENDS += "\ | 12 | DEPENDS += "python3-setuptools-scm-native" |
13 | python3-setuptools-scm-native \ | ||
14 | python3-wheel-native \ | ||
15 | " | ||
16 | 13 | ||
17 | BBCLASSEXTEND = "native" | 14 | BBCLASSEXTEND = "native" |
diff --git a/meta-python/recipes-devtools/python/python3-async-timeout_4.0.2.bb b/meta-python/recipes-devtools/python/python3-async-timeout_4.0.2.bb index 7355f00131..9545b40712 100644 --- a/meta-python/recipes-devtools/python/python3-async-timeout_4.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-async-timeout_4.0.2.bb | |||
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=4fa41f15bb5f23b6d3560c5845eb8d57" | |||
11 | SRC_URI[sha256sum] = "2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15" | 11 | SRC_URI[sha256sum] = "2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15" |
12 | 12 | ||
13 | PYPI_PACKAGE = "async-timeout" | 13 | PYPI_PACKAGE = "async-timeout" |
14 | inherit pypi setuptools3 | 14 | inherit pypi setuptools_build_meta |
15 | 15 | ||
16 | RDEPENDS:${PN} = "\ | 16 | RDEPENDS:${PN} = "\ |
17 | ${PYTHON_PN}-asyncio \ | 17 | ${PYTHON_PN}-asyncio \ |
diff --git a/meta-python/recipes-devtools/python/python3-bcrypt_3.2.0.bb b/meta-python/recipes-devtools/python/python3-bcrypt_3.2.0.bb index a6d5007069..92a6a0d8c5 100644 --- a/meta-python/recipes-devtools/python/python3-bcrypt_3.2.0.bb +++ b/meta-python/recipes-devtools/python/python3-bcrypt_3.2.0.bb | |||
@@ -7,7 +7,7 @@ DEPENDS += "${PYTHON_PN}-cffi-native" | |||
7 | SRC_URI[md5sum] = "fe31390dab603728f756cd3d6830c80a" | 7 | SRC_URI[md5sum] = "fe31390dab603728f756cd3d6830c80a" |
8 | SRC_URI[sha256sum] = "5b93c1726e50a93a033c36e5ca7fdcd29a5c7395af50a6892f5d9e7c6cfbfb29" | 8 | SRC_URI[sha256sum] = "5b93c1726e50a93a033c36e5ca7fdcd29a5c7395af50a6892f5d9e7c6cfbfb29" |
9 | 9 | ||
10 | inherit pypi setuptools3 ptest | 10 | inherit pypi setuptools_build_meta ptest |
11 | 11 | ||
12 | SRC_URI += " \ | 12 | SRC_URI += " \ |
13 | file://run-ptest \ | 13 | file://run-ptest \ |
diff --git a/meta-python/recipes-devtools/python/python3-bidict_0.21.4.bb b/meta-python/recipes-devtools/python/python3-bidict_0.21.4.bb index 266dc606a2..95426a4ae7 100644 --- a/meta-python/recipes-devtools/python/python3-bidict_0.21.4.bb +++ b/meta-python/recipes-devtools/python/python3-bidict_0.21.4.bb | |||
@@ -6,6 +6,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=9741c346eef56131163e13b9db1241b3" | |||
6 | 6 | ||
7 | SRC_URI[sha256sum] = "42c84ffbe6f8de898af6073b4be9ea7ccedcd78d3474aa844c54e49d5a079f6f" | 7 | SRC_URI[sha256sum] = "42c84ffbe6f8de898af6073b4be9ea7ccedcd78d3474aa844c54e49d5a079f6f" |
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools_build_meta |
10 | 10 | ||
11 | DEPENDS += "python3-setuptools-scm-native" | 11 | DEPENDS += "python3-setuptools-scm-native" |
diff --git a/meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb b/meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb index 1040dc7e5a..060a615d0b 100644 --- a/meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb +++ b/meta-python/recipes-devtools/python/python3-cachetools_4.2.4.bb | |||
@@ -8,7 +8,7 @@ SECTION = "devel/python" | |||
8 | LICENSE = "MIT" | 8 | LICENSE = "MIT" |
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=439a07e400525964c3c82684146e46eb" | 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=439a07e400525964c3c82684146e46eb" |
10 | 10 | ||
11 | inherit pypi setuptools3 ptest | 11 | inherit pypi setuptools_build_meta ptest |
12 | 12 | ||
13 | SRC_URI += " \ | 13 | SRC_URI += " \ |
14 | file://run-ptest \ | 14 | file://run-ptest \ |
diff --git a/meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb b/meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb index d3f6cd8c16..8d357b0ebd 100644 --- a/meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb +++ b/meta-python/recipes-devtools/python/python3-cbor2_5.4.2.bb | |||
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7ca | |||
6 | 6 | ||
7 | SRC_URI[sha256sum] = "e283e70b55a049ff364cc5e648fde587e4d9b0e87e4b2664c69e639135e6b3b8" | 7 | SRC_URI[sha256sum] = "e283e70b55a049ff364cc5e648fde587e4d9b0e87e4b2664c69e639135e6b3b8" |
8 | 8 | ||
9 | inherit pypi setuptools3 ptest | 9 | inherit pypi setuptools_build_meta ptest |
10 | 10 | ||
11 | SRC_URI += " \ | 11 | SRC_URI += " \ |
12 | file://run-ptest \ | 12 | file://run-ptest \ |
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 75221d8f9d..588a5f9ab0 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 | |||
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb48 | |||
8 | 8 | ||
9 | PYPI_PACKAGE = "python-dateutil" | 9 | PYPI_PACKAGE = "python-dateutil" |
10 | PIP_INSTALL_PACKAGE = "python_dateutil" | 10 | PIP_INSTALL_PACKAGE = "python_dateutil" |
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools_build_meta |
12 | 12 | ||
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" |
diff --git a/meta-python/recipes-devtools/python/python3-engineio_4.3.1.bb b/meta-python/recipes-devtools/python/python3-engineio_4.3.1.bb index a16306effb..c5a8851ffc 100644 --- a/meta-python/recipes-devtools/python/python3-engineio_4.3.1.bb +++ b/meta-python/recipes-devtools/python/python3-engineio_4.3.1.bb | |||
@@ -5,7 +5,7 @@ SECTION = "devel/python" | |||
5 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=42d0a9e728978f0eeb759c3be91536b8" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=42d0a9e728978f0eeb759c3be91536b8" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | PYPI_PACKAGE = "python-engineio" | 10 | PYPI_PACKAGE = "python-engineio" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-fasteners_0.17.3.bb b/meta-python/recipes-devtools/python/python3-fasteners_0.17.3.bb index d672708776..9baf23b7c0 100644 --- a/meta-python/recipes-devtools/python/python3-fasteners_0.17.3.bb +++ b/meta-python/recipes-devtools/python/python3-fasteners_0.17.3.bb | |||
@@ -5,14 +5,9 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=4476c4be31402271e101d9a4a3430d52" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "a9a42a208573d4074c77d041447336cf4e3c1389a256fd3e113ef59cf29b7980" | 6 | SRC_URI[sha256sum] = "a9a42a208573d4074c77d041447336cf4e3c1389a256fd3e113ef59cf29b7980" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-logging \ | 11 | ${PYTHON_PN}-logging \ |
12 | ${PYTHON_PN}-fcntl \ | 12 | ${PYTHON_PN}-fcntl \ |
13 | " | 13 | " |
14 | |||
15 | do_compile:prepend() { | ||
16 | echo "from setuptools import setup" > ${S}/setup.py | ||
17 | echo "setup()" >> ${S}/setup.py | ||
18 | } | ||
diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_3.1.0.bb b/meta-python/recipes-devtools/python/python3-flask-migrate_3.1.0.bb index 7a7c3fa3f3..b6e565f471 100644 --- a/meta-python/recipes-devtools/python/python3-flask-migrate_3.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-flask-migrate_3.1.0.bb | |||
@@ -6,7 +6,7 @@ SRC_URI[sha256sum] = "57d6060839e3a7f150eaab6fe4e726d9e3e7cffe2150fb223d73f92421 | |||
6 | 6 | ||
7 | PYPI_PACKAGE = "Flask-Migrate" | 7 | PYPI_PACKAGE = "Flask-Migrate" |
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools_build_meta |
10 | 10 | ||
11 | RDEPENDS:${PN} += "\ | 11 | RDEPENDS:${PN} += "\ |
12 | ${PYTHON_PN}-flask-sqlalchemy \ | 12 | ${PYTHON_PN}-flask-sqlalchemy \ |
diff --git a/meta-python/recipes-devtools/python/python3-flask-socketio_5.1.1.bb b/meta-python/recipes-devtools/python/python3-flask-socketio_5.1.1.bb index 3d7a1cb6a8..b854ce7f72 100644 --- a/meta-python/recipes-devtools/python/python3-flask-socketio_5.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-flask-socketio_5.1.1.bb | |||
@@ -5,7 +5,7 @@ SECTION = "devel/python" | |||
5 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=38cc21254909604298ce763a6e4440a0" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=38cc21254909604298ce763a6e4440a0" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | PYPI_PACKAGE = "Flask-SocketIO" | 10 | PYPI_PACKAGE = "Flask-SocketIO" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-frozenlist_1.3.0.bb b/meta-python/recipes-devtools/python/python3-frozenlist_1.3.0.bb index e3a932f773..2297d7c883 100644 --- a/meta-python/recipes-devtools/python/python3-frozenlist_1.3.0.bb +++ b/meta-python/recipes-devtools/python/python3-frozenlist_1.3.0.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=cf056e8e7a0a5477451af18b7b5aa98c" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "ce6f2ba0edb7b0c1d8976565298ad2deba6f8064d2bebb6ffce2ca896eb35b0b" | 6 | SRC_URI[sha256sum] = "ce6f2ba0edb7b0c1d8976565298ad2deba6f8064d2bebb6ffce2ca896eb35b0b" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | BBCLASSEXTEND = "native nativesdk" | 10 | BBCLASSEXTEND = "native nativesdk" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-httplib2_0.20.4.bb b/meta-python/recipes-devtools/python/python3-httplib2_0.20.4.bb index 6d22286caf..94568fc691 100644 --- a/meta-python/recipes-devtools/python/python3-httplib2_0.20.4.bb +++ b/meta-python/recipes-devtools/python/python3-httplib2_0.20.4.bb | |||
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=56e5e931172b6164b62dc7c4aba6c8cf" | |||
6 | 6 | ||
7 | SRC_URI[sha256sum] = "58a98e45b4b1a48273073f905d2961666ecf0fbac4250ea5b47aef259eb5c585" | 7 | SRC_URI[sha256sum] = "58a98e45b4b1a48273073f905d2961666ecf0fbac4250ea5b47aef259eb5c585" |
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools_build_meta |
10 | 10 | ||
11 | RDEPENDS:${PN} += "\ | 11 | RDEPENDS:${PN} += "\ |
12 | ${PYTHON_PN}-compression \ | 12 | ${PYTHON_PN}-compression \ |
diff --git a/meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb b/meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb index f84034f3cd..5d6a6c9d08 100644 --- a/meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d" | |||
7 | 7 | ||
8 | SRC_URI[sha256sum] = "ee1f872fdfc7d2ef4a28d4f80ddde9f96d36955b5d6b0dac4bdeb99502bddb00" | 8 | SRC_URI[sha256sum] = "ee1f872fdfc7d2ef4a28d4f80ddde9f96d36955b5d6b0dac4bdeb99502bddb00" |
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools_build_meta |
11 | 11 | ||
12 | DEPENDS += "\ | 12 | DEPENDS += "\ |
13 | ${PYTHON_PN}-setuptools-scm-native \ | 13 | ${PYTHON_PN}-setuptools-scm-native \ |
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 e9bf92aa1a..7be4b66a85 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 | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=6dc5b4bd3d02faedf08461621aa2aeca" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d2705a56b" | 6 | SRC_URI[sha256sum] = "427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d2705a56b" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | RDEPENDS:${PN} += "${PYTHON_PN}-stringold ${PYTHON_PN}-netclient ${PYTHON_PN}-idna" | 10 | RDEPENDS:${PN} += "${PYTHON_PN}-stringold ${PYTHON_PN}-netclient ${PYTHON_PN}-idna" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-icu_2.8.1.bb b/meta-python/recipes-devtools/python/python3-icu_2.8.1.bb index 09543d753d..e958309664 100644 --- a/meta-python/recipes-devtools/python/python3-icu_2.8.1.bb +++ b/meta-python/recipes-devtools/python/python3-icu_2.8.1.bb | |||
@@ -12,4 +12,4 @@ SRC_URI[sha256sum] = "f0b9549a87f87ba7c413f13679d137271e0b37f1f39b0109ace38257d4 | |||
12 | 12 | ||
13 | SRC_URI += "file://0001-Fix-host-contamination-of-include-files.patch" | 13 | SRC_URI += "file://0001-Fix-host-contamination-of-include-files.patch" |
14 | 14 | ||
15 | inherit pkgconfig pypi setuptools3 | 15 | inherit pkgconfig pypi setuptools_build_meta |
diff --git a/meta-python/recipes-devtools/python/python3-iso3166_2.0.2.bb b/meta-python/recipes-devtools/python/python3-iso3166_2.0.2.bb index bc05f066a6..f3ef467f4b 100644 --- a/meta-python/recipes-devtools/python/python3-iso3166_2.0.2.bb +++ b/meta-python/recipes-devtools/python/python3-iso3166_2.0.2.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5e2f4edc7e7408a82e4a1d05f229b695" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "04d02cfcfc18a6f8a9a4edb4d0a55e2e4fc575626c29d702f750de415e88d372" | 6 | SRC_URI[sha256sum] = "04d02cfcfc18a6f8a9a4edb4d0a55e2e4fc575626c29d702f750de415e88d372" |
7 | 7 | ||
8 | inherit pypi setuptools3 ptest | 8 | inherit pypi setuptools_build_meta ptest |
9 | 9 | ||
10 | SRC_URI += " \ | 10 | SRC_URI += " \ |
11 | file://run-ptest \ | 11 | file://run-ptest \ |
diff --git a/meta-python/recipes-devtools/python/python3-license-expression_21.6.14.bb b/meta-python/recipes-devtools/python/python3-license-expression_21.6.14.bb index efa8854411..01a5a94e1a 100644 --- a/meta-python/recipes-devtools/python/python3-license-expression_21.6.14.bb +++ b/meta-python/recipes-devtools/python/python3-license-expression_21.6.14.bb | |||
@@ -6,12 +6,9 @@ LIC_FILES_CHKSUM = "file://apache-2.0.LICENSE;md5=9429839cdc4b292ff46e88b524c6e0 | |||
6 | 6 | ||
7 | SRC_URI[sha256sum] = "9de87a427c9a449eee7913472fb9ed03b63036295547369fdbf95f76a8b924b2" | 7 | SRC_URI[sha256sum] = "9de87a427c9a449eee7913472fb9ed03b63036295547369fdbf95f76a8b924b2" |
8 | 8 | ||
9 | inherit pypi ptest setuptools3 | 9 | inherit pypi ptest setuptools_build_meta |
10 | 10 | ||
11 | DEPENDS += "\ | 11 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" |
12 | ${PYTHON_PN}-setuptools-scm-native \ | ||
13 | ${PYTHON_PN}-wheel-native \ | ||
14 | " | ||
15 | 12 | ||
16 | RDEPENDS:${PN} += "\ | 13 | RDEPENDS:${PN} += "\ |
17 | ${PYTHON_PN}-booleanpy \ | 14 | ${PYTHON_PN}-booleanpy \ |
diff --git a/meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb b/meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb index c37cc22c46..9614039f01 100644 --- a/meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb +++ b/meta-python/recipes-devtools/python/python3-luma-core_2.3.1.bb | |||
@@ -4,12 +4,10 @@ HOMEPAGE = "https://github.com/rm-hull/luma.core" | |||
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=3b1d500f5911ec7522f1f790d616e0ee" | 5 | LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=3b1d500f5911ec7522f1f790d616e0ee" |
6 | 6 | ||
7 | inherit pypi setuptools3 | 7 | inherit pypi setuptools_build_meta |
8 | 8 | ||
9 | SRC_URI[sha256sum] = "f293f5fff8946eea62af3a5d5d7da55c37d2b64aac6c9c90180a385da9f7d003" | 9 | SRC_URI[sha256sum] = "f293f5fff8946eea62af3a5d5d7da55c37d2b64aac6c9c90180a385da9f7d003" |
10 | 10 | ||
11 | CLEANBROKEN = "1" | ||
12 | |||
13 | PYPI_PACKAGE = "luma.core" | 11 | PYPI_PACKAGE = "luma.core" |
14 | 12 | ||
15 | RDEPENDS:${PN} += " \ | 13 | RDEPENDS:${PN} += " \ |
diff --git a/meta-python/recipes-devtools/python/python3-lz4_4.0.0.bb b/meta-python/recipes-devtools/python/python3-lz4_4.0.0.bb index 472e152db2..40b2186b2c 100644 --- a/meta-python/recipes-devtools/python/python3-lz4_4.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-lz4_4.0.0.bb | |||
@@ -10,6 +10,6 @@ DEPENDS += " \ | |||
10 | 10 | ||
11 | SRC_URI[sha256sum] = "57c5dfd3b7dae833b0d2b2c1aafd7f9d0dfcab40683d183d010c67c9fd1beca3" | 11 | SRC_URI[sha256sum] = "57c5dfd3b7dae833b0d2b2c1aafd7f9d0dfcab40683d183d010c67c9fd1beca3" |
12 | 12 | ||
13 | inherit pypi setuptools3 | 13 | inherit pypi setuptools_build_meta |
14 | 14 | ||
15 | BBCLASSEXTEND = "native nativesdk" | 15 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-python/recipes-devtools/python/python3-mypy_0.910.bb b/meta-python/recipes-devtools/python/python3-mypy_0.910.bb index 1a494af5af..be9ad3f66a 100644 --- a/meta-python/recipes-devtools/python/python3-mypy_0.910.bb +++ b/meta-python/recipes-devtools/python/python3-mypy_0.910.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=17b7180fcfc43c4e70c07c71588604c4" | |||
5 | 5 | ||
6 | PYPI_PACKAGE = "mypy" | 6 | PYPI_PACKAGE = "mypy" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | SRC_URI[sha256sum] = "704098302473cb31a218f1775a873b376b30b4c18229421e9e9dc8916fd16150" | 10 | SRC_URI[sha256sum] = "704098302473cb31a218f1775a873b376b30b4c18229421e9e9dc8916fd16150" |
11 | 11 | ||
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 2740b33551..b3600d093a 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 | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://MIT-LICENSE;md5=3bf5e1ad64c0d99032c3143361fa234e" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "694a8e44c87657c59292ede72891eb91d34131f6531463aab3009191c77364a8" | 6 | SRC_URI[sha256sum] = "694a8e44c87657c59292ede72891eb91d34131f6531463aab3009191c77364a8" |
7 | 7 | ||
8 | inherit pypi setuptools3 ptest | 8 | inherit pypi flit_core ptest |
9 | 9 | ||
10 | DEPENDS += "python3-pytest-runner-native" | 10 | DEPENDS += "python3-pytest-runner-native" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pint_0.18.bb b/meta-python/recipes-devtools/python/python3-pint_0.18.bb index a7a1384da1..c8a394b922 100644 --- a/meta-python/recipes-devtools/python/python3-pint_0.18.bb +++ b/meta-python/recipes-devtools/python/python3-pint_0.18.bb | |||
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=bccf824202692270a1e0829a62e3f47b" | |||
8 | 8 | ||
9 | PYPI_PACKAGE := "Pint" | 9 | PYPI_PACKAGE := "Pint" |
10 | 10 | ||
11 | inherit pypi ptest setuptools3 | 11 | inherit pypi ptest setuptools_build_meta |
12 | 12 | ||
13 | SRC_URI[sha256sum] = "8c4bce884c269051feb7abc69dbfd18403c0c764abc83da132e8a7222f8ba801" | 13 | SRC_URI[sha256sum] = "8c4bce884c269051feb7abc69dbfd18403c0c764abc83da132e8a7222f8ba801" |
14 | 14 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pyhamcrest_2.0.3.bb b/meta-python/recipes-devtools/python/python3-pyhamcrest_2.0.3.bb index 7c0824c2d1..4f047368f6 100644 --- a/meta-python/recipes-devtools/python/python3-pyhamcrest_2.0.3.bb +++ b/meta-python/recipes-devtools/python/python3-pyhamcrest_2.0.3.bb | |||
@@ -7,6 +7,6 @@ PYPI_PACKAGE = "PyHamcrest" | |||
7 | 7 | ||
8 | SRC_URI[sha256sum] = "dfb19cf6d71743e086fbb761ed7faea5aacbc8ec10c17a08b93ecde39192a3db" | 8 | SRC_URI[sha256sum] = "dfb19cf6d71743e086fbb761ed7faea5aacbc8ec10c17a08b93ecde39192a3db" |
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools_build_meta |
11 | 11 | ||
12 | RDEPENDS:${PN} += "${PYTHON_PN}-six" | 12 | RDEPENDS:${PN} += "${PYTHON_PN}-six" |
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 10f624b484..fd27c62d15 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 | |||
@@ -8,10 +8,9 @@ SRC_URI[sha256sum] = "8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb | |||
8 | 8 | ||
9 | PYPI_PACKAGE = "PyNaCl" | 9 | PYPI_PACKAGE = "PyNaCl" |
10 | 10 | ||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools_build_meta |
12 | 12 | ||
13 | DEPENDS += "\ | 13 | DEPENDS += "\ |
14 | ${PYTHON_PN}-wheel-native \ | ||
15 | ${PYTHON_PN}-cffi-native \ | 14 | ${PYTHON_PN}-cffi-native \ |
16 | libsodium \ | 15 | libsodium \ |
17 | " | 16 | " |
diff --git a/meta-python/recipes-devtools/python/python3-pyrad_2.4.bb b/meta-python/recipes-devtools/python/python3-pyrad_2.4.bb index 86a95a4aa4..665aaf38bd 100644 --- a/meta-python/recipes-devtools/python/python3-pyrad_2.4.bb +++ b/meta-python/recipes-devtools/python/python3-pyrad_2.4.bb | |||
@@ -6,4 +6,4 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665 | |||
6 | PYPI_PACKAGE = "pyrad" | 6 | PYPI_PACKAGE = "pyrad" |
7 | SRC_URI[sha256sum] = "057de4b7e89d8da57ba782c1bde45c63ebee720ae2c0b0a69beaff15c47e30d9" | 7 | SRC_URI[sha256sum] = "057de4b7e89d8da57ba782c1bde45c63ebee720ae2c0b0a69beaff15c47e30d9" |
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi poetry_core |
diff --git a/meta-python/recipes-devtools/python/python3-pyscaffold_4.1.5.bb b/meta-python/recipes-devtools/python/python3-pyscaffold_4.1.5.bb index cd160a69eb..9cf876ae36 100644 --- a/meta-python/recipes-devtools/python/python3-pyscaffold_4.1.5.bb +++ b/meta-python/recipes-devtools/python/python3-pyscaffold_4.1.5.bb | |||
@@ -11,7 +11,7 @@ DEPENDS += "python3-setuptools-scm-native" | |||
11 | 11 | ||
12 | SRC_URI[sha256sum] = "55f6532fd6d62b3b698d604257f7a7eda6a87557bbec22760f8c0d9549454802" | 12 | SRC_URI[sha256sum] = "55f6532fd6d62b3b698d604257f7a7eda6a87557bbec22760f8c0d9549454802" |
13 | 13 | ||
14 | inherit pypi setuptools3 | 14 | inherit pypi setuptools_build_meta |
15 | PYPI_PACKAGE = "PyScaffold" | 15 | PYPI_PACKAGE = "PyScaffold" |
16 | 16 | ||
17 | RDEPENDS:${PN} += " \ | 17 | RDEPENDS:${PN} += " \ |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-forked_1.4.0.bb b/meta-python/recipes-devtools/python/python3-pytest-forked_1.4.0.bb index c6f352bc61..d75dd401d1 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-forked_1.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-forked_1.4.0.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=772fcdaca14b378878d05c7d857e6c3e" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "8b67587c8f98cbbadfdd804539ed5455b6ed03802203485dd2f53c1422d7440e" | 6 | SRC_URI[sha256sum] = "8b67587c8f98cbbadfdd804539ed5455b6ed03802203485dd2f53c1422d7440e" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | DEPENDS += "python3-setuptools-scm-native" | 10 | DEPENDS += "python3-setuptools-scm-native" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pytest-helpers-namespace_2021.4.29.bb b/meta-python/recipes-devtools/python/python3-pytest-helpers-namespace_2021.4.29.bb index 0ee1bd6866..6ccf365f43 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-helpers-namespace_2021.4.29.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-helpers-namespace_2021.4.29.bb | |||
@@ -6,17 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=440a4cdb311cd7ad181efb4cba06d562" | |||
6 | 6 | ||
7 | SRC_URI[sha256sum] = "183524e3db4e2a1fea92e0ca3662a624ba44c9f3568da15679d7535ba6838a6a" | 7 | SRC_URI[sha256sum] = "183524e3db4e2a1fea92e0ca3662a624ba44c9f3568da15679d7535ba6838a6a" |
8 | 8 | ||
9 | inherit pypi setuptools3 | 9 | inherit pypi setuptools_build_meta |
10 | |||
11 | # Workaround for network access issue during compile step | ||
12 | # this needs to be fixed in the recipes buildsystem to move | ||
13 | # this such that it can be accomplished during do_fetch task | ||
14 | do_compile[network] = "1" | ||
15 | |||
16 | DEPENDS += "\ | ||
17 | ${PYTHON_PN}-wheel-native \ | ||
18 | ${PYTHON_PN}-pip-native \ | ||
19 | " | ||
20 | 10 | ||
21 | RDEPENDS:${PN} += " \ | 11 | RDEPENDS:${PN} += " \ |
22 | ${PYTHON_PN}-pytest \ | 12 | ${PYTHON_PN}-pytest \ |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-html_3.1.1.bb b/meta-python/recipes-devtools/python/python3-pytest-html_3.1.1.bb index cd0450f519..4b4aff01ce 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-html_3.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-html_3.1.1.bb | |||
@@ -6,10 +6,9 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132" | |||
6 | 6 | ||
7 | SRC_URI[sha256sum] = "3ee1cf319c913d19fe53aeb0bc400e7b0bc2dbeb477553733db1dad12eb75ee3" | 7 | SRC_URI[sha256sum] = "3ee1cf319c913d19fe53aeb0bc400e7b0bc2dbeb477553733db1dad12eb75ee3" |
8 | 8 | ||
9 | |||
10 | PYPI_PACKAGE = "pytest-html" | 9 | PYPI_PACKAGE = "pytest-html" |
11 | 10 | ||
12 | inherit pypi setuptools3 | 11 | inherit pypi setuptools_build_meta |
13 | 12 | ||
14 | RDEPENDS:${PN} += " \ | 13 | RDEPENDS:${PN} += " \ |
15 | ${PYTHON_PN}-pytest \ | 14 | ${PYTHON_PN}-pytest \ |
diff --git a/meta-python/recipes-devtools/python/python3-pytest-runner_5.3.1.bb b/meta-python/recipes-devtools/python/python3-pytest-runner_5.3.1.bb index 0ca007dd44..fed2d91140 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-runner_5.3.1.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-runner_5.3.1.bb | |||
@@ -4,8 +4,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6" | |||
4 | 4 | ||
5 | SRC_URI[sha256sum] = "0fce5b8dc68760f353979d99fdd6b3ad46330b6b1837e2077a89ebcf204aac91" | 5 | SRC_URI[sha256sum] = "0fce5b8dc68760f353979d99fdd6b3ad46330b6b1837e2077a89ebcf204aac91" |
6 | 6 | ||
7 | inherit pypi setuptools3 | 7 | inherit pypi setuptools_build_meta |
8 | PIP_INSTALL_PACKAGE = "pytest_runner" | 8 | |
9 | DEPENDS += " \ | 9 | DEPENDS += " \ |
10 | ${PYTHON_PN}-setuptools-scm-native" | 10 | ${PYTHON_PN}-setuptools-scm-native" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pytest-xdist_2.5.0.bb b/meta-python/recipes-devtools/python/python3-pytest-xdist_2.5.0.bb index a10ac8cc49..6ad01d08e5 100644 --- a/meta-python/recipes-devtools/python/python3-pytest-xdist_2.5.0.bb +++ b/meta-python/recipes-devtools/python/python3-pytest-xdist_2.5.0.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=772fcdaca14b378878d05c7d857e6c3e" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "4580deca3ff04ddb2ac53eba39d76cb5dd5edeac050cb6fbc768b0dd712b4edf" | 6 | SRC_URI[sha256sum] = "4580deca3ff04ddb2ac53eba39d76cb5dd5edeac050cb6fbc768b0dd712b4edf" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | DEPENDS += "python3-setuptools-scm-native" | 10 | DEPENDS += "python3-setuptools-scm-native" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pytz-deprecation-shim_0.1.0.post0.bb b/meta-python/recipes-devtools/python/python3-pytz-deprecation-shim_0.1.0.post0.bb index 76487c830f..96f1522b76 100644 --- a/meta-python/recipes-devtools/python/python3-pytz-deprecation-shim_0.1.0.post0.bb +++ b/meta-python/recipes-devtools/python/python3-pytz-deprecation-shim_0.1.0.post0.bb | |||
@@ -8,9 +8,4 @@ SRC_URI[sha256sum] = "af097bae1b616dde5c5744441e2ddc69e74dfdcb0c263129610d85b874 | |||
8 | PYPI_PACKAGE = "pytz_deprecation_shim" | 8 | PYPI_PACKAGE = "pytz_deprecation_shim" |
9 | PYPI_SRC_URI = "https://files.pythonhosted.org/packages/94/f0/909f94fea74759654390a3e1a9e4e185b6cd9aa810e533e3586f39da3097/${PYPI_PACKAGE}-${PV}.tar.gz" | 9 | PYPI_SRC_URI = "https://files.pythonhosted.org/packages/94/f0/909f94fea74759654390a3e1a9e4e185b6cd9aa810e533e3586f39da3097/${PYPI_PACKAGE}-${PV}.tar.gz" |
10 | 10 | ||
11 | inherit pypi setuptools3 | 11 | inherit pypi setuptools_build_meta |
12 | |||
13 | do_compile:prepend() { | ||
14 | echo "from setuptools import setup" > ${S}/setup.py | ||
15 | echo "setup()" >> ${S}/setup.py | ||
16 | } | ||
diff --git a/meta-python/recipes-devtools/python/python3-pyzmq_22.3.0.bb b/meta-python/recipes-devtools/python/python3-pyzmq_22.3.0.bb index d2893ccbb1..7f0d998f3b 100644 --- a/meta-python/recipes-devtools/python/python3-pyzmq_22.3.0.bb +++ b/meta-python/recipes-devtools/python/python3-pyzmq_22.3.0.bb | |||
@@ -8,7 +8,7 @@ DEPENDS = "zeromq" | |||
8 | SRC_URI += "file://club-rpath-out.patch" | 8 | SRC_URI += "file://club-rpath-out.patch" |
9 | SRC_URI[sha256sum] = "8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c" | 9 | SRC_URI[sha256sum] = "8eddc033e716f8c91c6a2112f0a8ebc5e00532b4a6ae1eb0ccc48e027f9c671c" |
10 | 10 | ||
11 | inherit pypi pkgconfig setuptools3 | 11 | inherit pypi pkgconfig setuptools_build_meta |
12 | 12 | ||
13 | RDEPENDS:${PN} += " \ | 13 | RDEPENDS:${PN} += " \ |
14 | ${PYTHON_PN}-multiprocessing \ | 14 | ${PYTHON_PN}-multiprocessing \ |
diff --git a/meta-python/recipes-devtools/python/python3-simpleeval_0.9.12.bb b/meta-python/recipes-devtools/python/python3-simpleeval_0.9.12.bb index 8ad6acc875..279c2562fe 100644 --- a/meta-python/recipes-devtools/python/python3-simpleeval_0.9.12.bb +++ b/meta-python/recipes-devtools/python/python3-simpleeval_0.9.12.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=dc9277482effe59b734b004cbcc1fee7" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "3e0be507486d4e21cf9d08847c7e57dd61a1603950399985f7c5a0be7fd33e36" | 6 | SRC_URI[sha256sum] = "3e0be507486d4e21cf9d08847c7e57dd61a1603950399985f7c5a0be7fd33e36" |
7 | 7 | ||
8 | inherit pypi setuptools3 ptest | 8 | inherit pypi setuptools_build_meta ptest |
9 | 9 | ||
10 | BBCLASSEXTEND = "native nativesdk" | 10 | BBCLASSEXTEND = "native nativesdk" |
11 | 11 | ||
@@ -21,10 +21,6 @@ RDEPENDS:${PN}-ptest += " \ | |||
21 | ${PYTHON_PN}-pytest \ | 21 | ${PYTHON_PN}-pytest \ |
22 | " | 22 | " |
23 | 23 | ||
24 | do_configure:prepend() { | ||
25 | sed -i -e "/use_2to3=True,/d" ${S}/setup.py | ||
26 | } | ||
27 | |||
28 | do_install_ptest() { | 24 | do_install_ptest() { |
29 | cp -f ${S}/test_simpleeval.py ${D}${PTEST_PATH}/ | 25 | cp -f ${S}/test_simpleeval.py ${D}${PTEST_PATH}/ |
30 | } | 26 | } |
diff --git a/meta-python/recipes-devtools/python/python3-socketio_5.5.2.bb b/meta-python/recipes-devtools/python/python3-socketio_5.5.2.bb index 4b22a73553..67e5bb71f2 100644 --- a/meta-python/recipes-devtools/python/python3-socketio_5.5.2.bb +++ b/meta-python/recipes-devtools/python/python3-socketio_5.5.2.bb | |||
@@ -5,7 +5,7 @@ SECTION = "devel/python" | |||
5 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=42d0a9e728978f0eeb759c3be91536b8" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=42d0a9e728978f0eeb759c3be91536b8" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | PYPI_PACKAGE = "python-socketio" | 10 | PYPI_PACKAGE = "python-socketio" |
11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-soupsieve_2.3.1.bb b/meta-python/recipes-devtools/python/python3-soupsieve_2.3.1.bb index f4cf93daba..cb87ec936c 100644 --- a/meta-python/recipes-devtools/python/python3-soupsieve_2.3.1.bb +++ b/meta-python/recipes-devtools/python/python3-soupsieve_2.3.1.bb | |||
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.md;md5=33c3a77def9b3ad83e01c65bdcc1af67" | |||
6 | 6 | ||
7 | SRC_URI[sha256sum] = "b8d49b1cd4f037c7082a9683dfa1801aa2597fb11c3a1155b7a5b94829b4f1f9" | 7 | SRC_URI[sha256sum] = "b8d49b1cd4f037c7082a9683dfa1801aa2597fb11c3a1155b7a5b94829b4f1f9" |
8 | 8 | ||
9 | inherit pypi setuptools3 ptest | 9 | inherit pypi setuptools_build_meta ptest |
10 | 10 | ||
11 | SRC_URI += " \ | 11 | SRC_URI += " \ |
12 | file://run-ptest \ | 12 | file://run-ptest \ |
diff --git a/meta-python/recipes-devtools/python/python3-tqdm_4.63.0.bb b/meta-python/recipes-devtools/python/python3-tqdm_4.63.0.bb index cd5f1aab53..e7ba1d4e82 100644 --- a/meta-python/recipes-devtools/python/python3-tqdm_4.63.0.bb +++ b/meta-python/recipes-devtools/python/python3-tqdm_4.63.0.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=1672e2674934fd93a31c09cf17f34100" | |||
7 | 7 | ||
8 | SRC_URI[sha256sum] = "1d9835ede8e394bb8c9dcbffbca02d717217113adc679236873eeaac5bc0b3cd" | 8 | SRC_URI[sha256sum] = "1d9835ede8e394bb8c9dcbffbca02d717217113adc679236873eeaac5bc0b3cd" |
9 | 9 | ||
10 | inherit pypi setuptools3 | 10 | inherit pypi setuptools_build_meta |
11 | 11 | ||
12 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | 12 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" |
13 | 13 | ||
diff --git a/meta-python/recipes-devtools/python/python3-traitlets_5.1.1.bb b/meta-python/recipes-devtools/python/python3-traitlets_5.1.1.bb index bfed02d6f5..b9301ecaf9 100644 --- a/meta-python/recipes-devtools/python/python3-traitlets_5.1.1.bb +++ b/meta-python/recipes-devtools/python/python3-traitlets_5.1.1.bb | |||
@@ -13,4 +13,4 @@ RDEPENDS:${PN} = "\ | |||
13 | ${PYTHON_PN}-decorator \ | 13 | ${PYTHON_PN}-decorator \ |
14 | " | 14 | " |
15 | 15 | ||
16 | inherit setuptools3 pypi | 16 | inherit pypi setuptools_build_meta |
diff --git a/meta-python/recipes-devtools/python/python3-twine_3.8.0.bb b/meta-python/recipes-devtools/python/python3-twine_3.8.0.bb index d9aa3dce93..b96e153b5a 100644 --- a/meta-python/recipes-devtools/python/python3-twine_3.8.0.bb +++ b/meta-python/recipes-devtools/python/python3-twine_3.8.0.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=a3d1106b253a8d50dd82a4202a045b4c" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "8efa52658e0ae770686a13b675569328f1fba9837e5de1867bfe5f46a9aefe19" | 6 | SRC_URI[sha256sum] = "8efa52658e0ae770686a13b675569328f1fba9837e5de1867bfe5f46a9aefe19" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | DEPENDS += "\ | 10 | DEPENDS += "\ |
11 | ${PYTHON_PN}-setuptools-scm-native \ | 11 | ${PYTHON_PN}-setuptools-scm-native \ |
@@ -15,9 +15,4 @@ RDEPENDS:${PN} += " \ | |||
15 | ${PYTHON_PN}-importlib-metadata \ | 15 | ${PYTHON_PN}-importlib-metadata \ |
16 | " | 16 | " |
17 | 17 | ||
18 | do_compile:prepend() { | ||
19 | echo "from setuptools import setup" > ${S}/setup.py | ||
20 | echo "setup()" >> ${S}/setup.py | ||
21 | } | ||
22 | |||
23 | BBCLASSEXTEND = "native" | 18 | BBCLASSEXTEND = "native" |
diff --git a/meta-python/recipes-devtools/python/python3-twisted_22.2.0.bb b/meta-python/recipes-devtools/python/python3-twisted_22.2.0.bb index 5a000bc6a1..053b5c0619 100644 --- a/meta-python/recipes-devtools/python/python3-twisted_22.2.0.bb +++ b/meta-python/recipes-devtools/python/python3-twisted_22.2.0.bb | |||
@@ -11,7 +11,7 @@ SRC_URI[sha256sum] = "57f32b1f6838facb8c004c89467840367ad38e9e535f8252091345dba5 | |||
11 | 11 | ||
12 | PYPI_PACKAGE = "Twisted" | 12 | PYPI_PACKAGE = "Twisted" |
13 | 13 | ||
14 | inherit pypi setuptools3 | 14 | inherit pypi setuptools_build_meta |
15 | 15 | ||
16 | do_install:append() { | 16 | do_install:append() { |
17 | # remove some useless files before packaging | 17 | # remove some useless files before packaging |
diff --git a/meta-python/recipes-devtools/python/python3-typeguard_2.13.3.bb b/meta-python/recipes-devtools/python/python3-typeguard_2.13.3.bb index 21ca439505..368112b0b2 100644 --- a/meta-python/recipes-devtools/python/python3-typeguard_2.13.3.bb +++ b/meta-python/recipes-devtools/python/python3-typeguard_2.13.3.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=f0e423eea5c91e7aa21bdb70184b3e53" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "00edaa8da3a133674796cf5ea87d9f4b4c367d77476e185e80251cc13dfbb8c4" | 6 | SRC_URI[sha256sum] = "00edaa8da3a133674796cf5ea87d9f4b4c367d77476e185e80251cc13dfbb8c4" |
7 | 7 | ||
8 | inherit pypi setuptools3 ptest | 8 | inherit pypi setuptools_build_meta ptest |
9 | 9 | ||
10 | SRC_URI += " \ | 10 | SRC_URI += " \ |
11 | file://run-ptest \ | 11 | file://run-ptest \ |
diff --git a/meta-python/recipes-devtools/python/python3-tzlocal_4.1.bb b/meta-python/recipes-devtools/python/python3-tzlocal_4.1.bb index 29a69f8b8f..a323f1fff0 100644 --- a/meta-python/recipes-devtools/python/python3-tzlocal_4.1.bb +++ b/meta-python/recipes-devtools/python/python3-tzlocal_4.1.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=57e0bd61643d81d05683cdce65b11d10" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "0f28015ac68a5c067210400a9197fc5d36ba9bc3f8eaf1da3cbd59acdfed9e09" | 6 | SRC_URI[sha256sum] = "0f28015ac68a5c067210400a9197fc5d36ba9bc3f8eaf1da3cbd59acdfed9e09" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | RDEPENDS:${PN} += "\ | 10 | RDEPENDS:${PN} += "\ |
11 | ${PYTHON_PN}-pytz-deprecation-shim \ | 11 | ${PYTHON_PN}-pytz-deprecation-shim \ |
diff --git a/meta-python/recipes-devtools/python/python3-waitress_2.1.0.bb b/meta-python/recipes-devtools/python/python3-waitress_2.1.0.bb index 99e483962f..31a77c5b9e 100644 --- a/meta-python/recipes-devtools/python/python3-waitress_2.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-waitress_2.1.0.bb | |||
@@ -8,4 +8,4 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=78ccb3640dc841e1baecb3e27a6966b2" | |||
8 | 8 | ||
9 | SRC_URI[sha256sum] = "ec8a8d9b6b15f3bb2c1a82b8f3929a029c333c35fcafb08c185a9e562d8cc9c2" | 9 | SRC_URI[sha256sum] = "ec8a8d9b6b15f3bb2c1a82b8f3929a029c333c35fcafb08c185a9e562d8cc9c2" |
10 | 10 | ||
11 | inherit setuptools3 pypi | 11 | inherit setuptools_build_meta pypi |
diff --git a/meta-python/recipes-devtools/python/python3-yamlloader_1.1.0.bb b/meta-python/recipes-devtools/python/python3-yamlloader_1.1.0.bb index a5510d5dc7..06f3488921 100644 --- a/meta-python/recipes-devtools/python/python3-yamlloader_1.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-yamlloader_1.1.0.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=6831ef36faa29329bce2420c5356f97e" | |||
5 | 5 | ||
6 | SRC_URI[sha256sum] = "8a297c7a197683ba02e5e2b882ffd6c6180d01bdefb534b69cd3962df020bfe6" | 6 | SRC_URI[sha256sum] = "8a297c7a197683ba02e5e2b882ffd6c6180d01bdefb534b69cd3962df020bfe6" |
7 | 7 | ||
8 | inherit pypi setuptools3 | 8 | inherit pypi setuptools_build_meta |
9 | 9 | ||
10 | RDEPENDS:${PN}:class-target += "\ | 10 | RDEPENDS:${PN}:class-target += "\ |
11 | ${PYTHON_PN}-pyyaml \ | 11 | ${PYTHON_PN}-pyyaml \ |