diff options
Diffstat (limited to 'meta-python/recipes-devtools/python')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-filelock_3.24.2.bb (renamed from meta-python/recipes-devtools/python/python3-filelock_3.20.3.bb) | 6 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-flask-limiter_4.1.1.bb | 21 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-langtable_0.0.70.bb (renamed from meta-python/recipes-devtools/python/python3-langtable_0.0.69.bb) | 2 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-lief_0.17.3.bb (renamed from meta-python/recipes-devtools/python/python3-lief_0.17.2.bb) | 2 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-limits_5.8.0.bb | 18 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-platformdirs_4.9.2.bb (renamed from meta-python/recipes-devtools/python/python3-platformdirs_4.5.1.bb) | 2 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pyee_13.0.1.bb (renamed from meta-python/recipes-devtools/python/python3-pyee_13.0.0.bb) | 2 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pyperf_2.10.0.bb (renamed from meta-python/recipes-devtools/python/python3-pyperf_2.9.0.bb) | 2 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pyrad_2.5.4.bb (renamed from meta-python/recipes-devtools/python/python3-pyrad_2.5.2.bb) | 2 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-tox_4.36.1.bb (renamed from meta-python/recipes-devtools/python/python3-tox_4.27.0.bb) | 2 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-trio_0.33.0.bb (renamed from meta-python/recipes-devtools/python/python3-trio_0.32.0.bb) | 2 | ||||
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-typeguard_4.5.0.bb (renamed from meta-python/recipes-devtools/python/python3-typeguard_4.4.4.bb) | 3 |
12 files changed, 52 insertions, 12 deletions
diff --git a/meta-python/recipes-devtools/python/python3-filelock_3.20.3.bb b/meta-python/recipes-devtools/python/python3-filelock_3.24.2.bb index 4499b220bd..d1e59107eb 100644 --- a/meta-python/recipes-devtools/python/python3-filelock_3.20.3.bb +++ b/meta-python/recipes-devtools/python/python3-filelock_3.24.2.bb | |||
| @@ -2,11 +2,11 @@ | |||
| 2 | # Copyright (C) 2023 iris-GmbH infrared & intelligent sensors | 2 | # Copyright (C) 2023 iris-GmbH infrared & intelligent sensors |
| 3 | SUMMARY = "A single module, which implements a platform independent file lock in Python, which provides a simple way of inter-process communication" | 3 | SUMMARY = "A single module, which implements a platform independent file lock in Python, which provides a simple way of inter-process communication" |
| 4 | HOMEPAGE = "https://py-filelock.readthedocs.io/" | 4 | HOMEPAGE = "https://py-filelock.readthedocs.io/" |
| 5 | LICENSE = "Unlicense" | 5 | LICENSE = "MIT" |
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=911690f51af322440237a253d695d19f" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2c6acbdf7bb74caa37512c3a5ca6857b" |
| 7 | 7 | ||
| 8 | SRC_URI += "file://run-ptest" | 8 | SRC_URI += "file://run-ptest" |
| 9 | SRC_URI[sha256sum] = "18c57ee915c7ec61cff0ecf7f0f869936c7c30191bb0cf406f1341778d0834e1" | 9 | SRC_URI[sha256sum] = "c22803117490f156e59fafce621f0550a7a853e2bbf4f87f112b11d469b6c81b" |
| 10 | 10 | ||
| 11 | BBCLASSEXTEND = "native nativesdk" | 11 | BBCLASSEXTEND = "native nativesdk" |
| 12 | 12 | ||
diff --git a/meta-python/recipes-devtools/python/python3-flask-limiter_4.1.1.bb b/meta-python/recipes-devtools/python/python3-flask-limiter_4.1.1.bb new file mode 100644 index 0000000000..7c2e18ffba --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-flask-limiter_4.1.1.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "Rate Limiting extension for Flask" | ||
| 2 | DESCRIPTION = "Flask-Limiter adds rate limiting to Flask applications." | ||
| 3 | HOMEPAGE = "https://github.com/alisaifee/flask-limiter" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2455d5e574bc0fc489411ca45766ac78" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "ca11608fc7eec43dcea606964ca07c3bd4ec1ae89043a0f67f717899a4f48106" | ||
| 8 | |||
| 9 | PYPI_PACKAGE = "flask_limiter" | ||
| 10 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
| 11 | |||
| 12 | inherit pypi python_hatchling | ||
| 13 | |||
| 14 | DEPENDS += "python3-hatch-vcs-native" | ||
| 15 | |||
| 16 | RDEPENDS:${PN} += " \ | ||
| 17 | python3-flask \ | ||
| 18 | python3-limits \ | ||
| 19 | python3-ordered-set \ | ||
| 20 | python3-werkzeug \ | ||
| 21 | " | ||
diff --git a/meta-python/recipes-devtools/python/python3-langtable_0.0.69.bb b/meta-python/recipes-devtools/python/python3-langtable_0.0.70.bb index 27ab97cd9b..7df58f4e0f 100644 --- a/meta-python/recipes-devtools/python/python3-langtable_0.0.69.bb +++ b/meta-python/recipes-devtools/python/python3-langtable_0.0.70.bb | |||
| @@ -6,7 +6,7 @@ SECTION = "devel/python" | |||
| 6 | 6 | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" |
| 8 | 8 | ||
| 9 | SRC_URI[sha256sum] = "f0a51870cf837fd689094ce73a420efa0b9b470facda551090f9a93d1e16510c" | 9 | SRC_URI[sha256sum] = "725b94121856a3b76d2345e8596954b82ed1eda78513e55ac55fbe4a4823e66e" |
| 10 | 10 | ||
| 11 | inherit pypi setuptools3 python3native | 11 | inherit pypi setuptools3 python3native |
| 12 | 12 | ||
diff --git a/meta-python/recipes-devtools/python/python3-lief_0.17.2.bb b/meta-python/recipes-devtools/python/python3-lief_0.17.3.bb index 44b4976ab1..69e1d59956 100644 --- a/meta-python/recipes-devtools/python/python3-lief_0.17.2.bb +++ b/meta-python/recipes-devtools/python/python3-lief_0.17.3.bb | |||
| @@ -5,7 +5,7 @@ LICENSE = "Apache-2.0" | |||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=9ab5db472ff936b441055522f5000547" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=9ab5db472ff936b441055522f5000547" |
| 6 | SECTION = "libs" | 6 | SECTION = "libs" |
| 7 | 7 | ||
| 8 | SRCREV = "aa2b617f47c2f75fca9ff00b146dabbaf1b9f422" | 8 | SRCREV = "03aca30b53db2f336b36f90843061bb3f840ff5a" |
| 9 | SRC_URI = " \ | 9 | SRC_URI = " \ |
| 10 | git://github.com/lief-project/LIEF.git;protocol=https;branch=release/0.17.x;tag=${PV} \ | 10 | git://github.com/lief-project/LIEF.git;protocol=https;branch=release/0.17.x;tag=${PV} \ |
| 11 | file://0001-build-requirements.txt-Allow-newer-versions.patch \ | 11 | file://0001-build-requirements.txt-Allow-newer-versions.patch \ |
diff --git a/meta-python/recipes-devtools/python/python3-limits_5.8.0.bb b/meta-python/recipes-devtools/python/python3-limits_5.8.0.bb new file mode 100644 index 0000000000..0439a0e132 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-limits_5.8.0.bb | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | SUMMARY = "Rate limiting utilities" | ||
| 2 | DESCRIPTION = "About Rate limiting using various strategies and \ | ||
| 3 | storage backends such as redis, memcached & mongodb" | ||
| 4 | HOMEPAGE = "https://github.com/alisaifee/limits" | ||
| 5 | LICENSE = "MIT" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2455d5e574bc0fc489411ca45766ac78" | ||
| 7 | |||
| 8 | SRC_URI[sha256sum] = "c9e0d74aed837e8f6f50d1fcebcf5fd8130957287206bc3799adaee5092655da" | ||
| 9 | |||
| 10 | inherit pypi python_hatchling | ||
| 11 | |||
| 12 | DEPENDS += "python3-hatch-vcs-native" | ||
| 13 | |||
| 14 | RDEPENDS:${PN} += " \ | ||
| 15 | python3-deprecated \ | ||
| 16 | python3-packaging \ | ||
| 17 | python3-typing-extensions \ | ||
| 18 | " | ||
diff --git a/meta-python/recipes-devtools/python/python3-platformdirs_4.5.1.bb b/meta-python/recipes-devtools/python/python3-platformdirs_4.9.2.bb index 666ba6805e..cbe638d47d 100644 --- a/meta-python/recipes-devtools/python/python3-platformdirs_4.5.1.bb +++ b/meta-python/recipes-devtools/python/python3-platformdirs_4.9.2.bb | |||
| @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/platformdirs/platformdirs" | |||
| 3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ea4f5a41454746a9ed111e3d8723d17a" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=ea4f5a41454746a9ed111e3d8723d17a" |
| 5 | 5 | ||
| 6 | SRC_URI[sha256sum] = "61d5cdcc6065745cdd94f0f878977f8de9437be93de97c1c12f853c9c0cdcbda" | 6 | SRC_URI[sha256sum] = "9a33809944b9db043ad67ca0db94b14bf452cc6aeaac46a88ea55b26e2e9d291" |
| 7 | 7 | ||
| 8 | inherit pypi python_hatchling ptest-python-pytest | 8 | inherit pypi python_hatchling ptest-python-pytest |
| 9 | 9 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pyee_13.0.0.bb b/meta-python/recipes-devtools/python/python3-pyee_13.0.1.bb index fba54324da..a5a9822cd3 100644 --- a/meta-python/recipes-devtools/python/python3-pyee_13.0.0.bb +++ b/meta-python/recipes-devtools/python/python3-pyee_13.0.1.bb | |||
| @@ -3,7 +3,7 @@ LICENSE = "MIT" | |||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b2b1cc8797dff32cec5d783148fceab5" | 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b2b1cc8797dff32cec5d783148fceab5" |
| 4 | 4 | ||
| 5 | DEPENDS = "python3-setuptools-scm-native" | 5 | DEPENDS = "python3-setuptools-scm-native" |
| 6 | SRC_URI[sha256sum] = "b391e3c5a434d1f5118a25615001dbc8f669cf410ab67d04c4d4e07c55481c37" | 6 | SRC_URI[sha256sum] = "0b931f7c14535667ed4c7e0d531716368715e860b988770fc7eb8578d1f67fc8" |
| 7 | 7 | ||
| 8 | inherit pypi python_setuptools_build_meta ptest-python-pytest | 8 | inherit pypi python_setuptools_build_meta ptest-python-pytest |
| 9 | 9 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pyperf_2.9.0.bb b/meta-python/recipes-devtools/python/python3-pyperf_2.10.0.bb index 810e65674a..39b8ee8470 100644 --- a/meta-python/recipes-devtools/python/python3-pyperf_2.9.0.bb +++ b/meta-python/recipes-devtools/python/python3-pyperf_2.10.0.bb | |||
| @@ -13,7 +13,7 @@ Features: \ | |||
| 13 | LICENSE = "MIT" | 13 | LICENSE = "MIT" |
| 14 | LIC_FILES_CHKSUM = "file://COPYING;md5=78bc2e6e87c8c61272937b879e6dc2f8" | 14 | LIC_FILES_CHKSUM = "file://COPYING;md5=78bc2e6e87c8c61272937b879e6dc2f8" |
| 15 | 15 | ||
| 16 | SRC_URI[sha256sum] = "dbe0feef8ec1a465df191bba2576149762d15a8c9985c9fea93ab625d875c362" | 16 | SRC_URI[sha256sum] = "dd93ccfda79214725293e95f1fa6e00cb4a64adcf1326039486d4e1f91caaa62" |
| 17 | 17 | ||
| 18 | DEPENDS += "python3-six-native" | 18 | DEPENDS += "python3-six-native" |
| 19 | 19 | ||
diff --git a/meta-python/recipes-devtools/python/python3-pyrad_2.5.2.bb b/meta-python/recipes-devtools/python/python3-pyrad_2.5.4.bb index 415a8a8212..404e26381b 100644 --- a/meta-python/recipes-devtools/python/python3-pyrad_2.5.2.bb +++ b/meta-python/recipes-devtools/python/python3-pyrad_2.5.4.bb | |||
| @@ -4,7 +4,7 @@ LICENSE = "BSD-3-Clause" | |||
| 4 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=53dbfa56f61b90215a9f8f0d527c043d" | 4 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=53dbfa56f61b90215a9f8f0d527c043d" |
| 5 | 5 | ||
| 6 | PYPI_PACKAGE = "pyrad" | 6 | PYPI_PACKAGE = "pyrad" |
| 7 | SRC_URI[sha256sum] = "368e8d3cb7b9e2ca9e4357b343787238bf135edd3f3598cf26ccd65d32506ff9" | 7 | SRC_URI[sha256sum] = "e039c48a026c988d49276bd7c75795f55e0e4c2788f7ddf09419ce0e191a154d" |
| 8 | 8 | ||
| 9 | inherit pypi python_poetry_core | 9 | inherit pypi python_poetry_core |
| 10 | 10 | ||
diff --git a/meta-python/recipes-devtools/python/python3-tox_4.27.0.bb b/meta-python/recipes-devtools/python/python3-tox_4.36.1.bb index 4deacdb3d9..98646b44a7 100644 --- a/meta-python/recipes-devtools/python/python3-tox_4.27.0.bb +++ b/meta-python/recipes-devtools/python/python3-tox_4.36.1.bb | |||
| @@ -6,7 +6,7 @@ HOMEPAGE = "https://tox.readthedocs.org/" | |||
| 6 | LICENSE = "MIT" | 6 | LICENSE = "MIT" |
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=11610a9d8fd95649cf8159be12b98cb7" | 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=11610a9d8fd95649cf8159be12b98cb7" |
| 8 | 8 | ||
| 9 | SRC_URI[sha256sum] = "b97d5ecc0c0d5755bcc5348387fef793e1bfa68eb33746412f4c60881d7f5f57" | 9 | SRC_URI[sha256sum] = "085ddf2e6ebd2a5be04ae8f4a2c6422a7994a4702b3c187edc4e99f1e7ccdc2a" |
| 10 | 10 | ||
| 11 | BBCLASSEXTEND = "native nativesdk" | 11 | BBCLASSEXTEND = "native nativesdk" |
| 12 | inherit pypi python_hatchling | 12 | inherit pypi python_hatchling |
diff --git a/meta-python/recipes-devtools/python/python3-trio_0.32.0.bb b/meta-python/recipes-devtools/python/python3-trio_0.33.0.bb index cc23d3070e..8bb4514649 100644 --- a/meta-python/recipes-devtools/python/python3-trio_0.32.0.bb +++ b/meta-python/recipes-devtools/python/python3-trio_0.33.0.bb | |||
| @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=447ea202d14d2aee40d8a2c26c865da9 \ | |||
| 5 | file://LICENSE.APACHE2;md5=3b83ef96387f14655fc854ddc3c6bd57 \ | 5 | file://LICENSE.APACHE2;md5=3b83ef96387f14655fc854ddc3c6bd57 \ |
| 6 | file://LICENSE.MIT;md5=5f229c828e5a6f0a2ce90c7d3c054721" | 6 | file://LICENSE.MIT;md5=5f229c828e5a6f0a2ce90c7d3c054721" |
| 7 | 7 | ||
| 8 | SRC_URI[sha256sum] = "150f29ec923bcd51231e1d4c71c7006e65247d68759dd1c19af4ea815a25806b" | 8 | SRC_URI[sha256sum] = "a29b92b73f09d4b48ed249acd91073281a7f1063f09caba5dc70465b5c7aa970" |
| 9 | 9 | ||
| 10 | inherit pypi python_setuptools_build_meta | 10 | inherit pypi python_setuptools_build_meta |
| 11 | 11 | ||
diff --git a/meta-python/recipes-devtools/python/python3-typeguard_4.4.4.bb b/meta-python/recipes-devtools/python/python3-typeguard_4.5.0.bb index 812288881d..e294e3e701 100644 --- a/meta-python/recipes-devtools/python/python3-typeguard_4.4.4.bb +++ b/meta-python/recipes-devtools/python/python3-typeguard_4.5.0.bb | |||
| @@ -3,7 +3,7 @@ HOMEPAGE = "https://pypi.org/project/typeguard/" | |||
| 3 | LICENSE = "MIT" | 3 | LICENSE = "MIT" |
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f0e423eea5c91e7aa21bdb70184b3e53" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f0e423eea5c91e7aa21bdb70184b3e53" |
| 5 | 5 | ||
| 6 | SRC_URI[sha256sum] = "3a7fd2dffb705d4d0efaed4306a704c89b9dee850b688f060a8b1615a79e5f74" | 6 | SRC_URI[sha256sum] = "749bea21cdb2553e12831bc29f1eae980b22c7de8331ab67ae7db9e85470b5a7" |
| 7 | 7 | ||
| 8 | inherit pypi python_setuptools_build_meta ptest-python-pytest | 8 | inherit pypi python_setuptools_build_meta ptest-python-pytest |
| 9 | 9 | ||
| @@ -12,6 +12,7 @@ RDEPENDS:${PN} += " \ | |||
| 12 | python3-compression \ | 12 | python3-compression \ |
| 13 | python3-unittest \ | 13 | python3-unittest \ |
| 14 | python3-typing-extensions \ | 14 | python3-typing-extensions \ |
| 15 | python3-json \ | ||
| 15 | " | 16 | " |
| 16 | 17 | ||
| 17 | RDEPENDS:${PN}-ptest += " \ | 18 | RDEPENDS:${PN}-ptest += " \ |
