meta-openembedded/meta-python/recipes-devtools/python/python3-decorator_5.2.1.bb
Leon Anavi c9526571a7
python3-decorator: Upgrade 5.1.1 -> 5.2.1
Upgrade to release 5.2.1:

- Changed the build procedure to use pyproject.toml and moved the
  tests outside of the generated wheel/tarball.
- Added official support for Python 3.11, 3.12, 3.13
- Dropped official support for Python < 3.8: the module is expected
  to work on older Python versions, but I cannot test such versions
  on GitHub actions, so the author cannot claim that it is
  officially supported.
- Dafu Wu provided support for decorating partial functions, i.e.
  functions wrapped by functools.partial.
- Included tests and documentation in sdist

License-Update: Updated copyright years

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-03-18 07:36:56 -07:00

21 lines
698 B
BlitzBasic

SUMMARY = "Python decorator utilities"
DESCRIPTION = "\
The aim of the decorator module it to simplify the usage of decorators \
for the average programmer, and to popularize decorators by showing \
various non-trivial examples. Of course, as all techniques, decorators \
can be abused and you should not try to solve every problem with a \
decorator, just because you can."
LICENSE = "BSD-2-Clause"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=69f84fd117b2398674e12b8380df27c8"
SRC_URI[sha256sum] = "65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360"
inherit pypi python_setuptools_build_meta
RDEPENDS:${PN} += "\
python3-stringold \
"
BBCLASSEXTEND = "native nativesdk"