diff options
| author | Trevor Gamblin <tgamblin@baylibre.com> | 2025-02-25 21:54:37 -0500 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-27 10:55:17 +0000 |
| commit | a8f507ba6c27cb100df76edcaa21497dd92c5acd (patch) | |
| tree | ac899b545b271a2bc746b5a8b8b2ed7619ff564f /meta/recipes-devtools/python/python3-setuptools-scm_8.2.0.bb | |
| parent | ee3bd7405df7b78b263e79ca439b8fa6fed4e4be (diff) | |
| download | poky-a8f507ba6c27cb100df76edcaa21497dd92c5acd.tar.gz | |
python3-setuptools-scm: upgrade 8.1.0 -> 8.2.0
Patch '0001-respect-GIT_CEILING_DIRECTORIES.patch' is no longer required
as it's upstream in 979d79301da6.
Changelog (https://github.com/pypa/setuptools-scm/blob/main/CHANGELOG.md):
Added
- fix #960: add a --force-write-version-files flag for the cli
Changed
- fix #950: ensure to pass encodings to io usage
- fix #957: add subprocess timeout control env var
- add sp-repo-review pre-commit hook
Fixed
- fix #1018: allow non-normalized versions for semver
- fix #1103: respect GIT_CEILING_DIRECTORIES when trying to find git toplevels
- fix #1081: add name normalized pipx entrypoint
- fix #1080: clean pdm from PYTHONPATH to protect mercurial
(From OE-Core rev: 6bab759c00b44fc2793e095f991975b7eebf360f)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-setuptools-scm_8.2.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-setuptools-scm_8.2.0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools-scm_8.2.0.bb b/meta/recipes-devtools/python/python3-setuptools-scm_8.2.0.bb new file mode 100644 index 0000000000..ecb79afe47 --- /dev/null +++ b/meta/recipes-devtools/python/python3-setuptools-scm_8.2.0.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "the blessed package to manage your versions by scm tags" | ||
| 2 | HOMEPAGE = "https://pypi.org/project/setuptools-scm/" | ||
| 3 | DESCRIPTION = "setuptools_scm handles managing your Python package \ | ||
| 4 | versions in SCM metadata instead of declaring them as the version \ | ||
| 5 | argument or in a SCM managed file." | ||
| 6 | LICENSE = "MIT" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=838c366f69b72c5df05c96dff79b35f2" | ||
| 8 | |||
| 9 | SRC_URI[sha256sum] = "a18396a1bc0219c974d1a74612b11f9dce0d5bd8b1dc55c65f6ac7fd609e8c28" | ||
| 10 | |||
| 11 | PYPI_PACKAGE = "setuptools_scm" | ||
| 12 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
| 13 | |||
| 14 | inherit pypi python_setuptools_build_meta | ||
| 15 | |||
| 16 | DEPENDS += "python3-packaging-native python3-typing-extensions-native" | ||
| 17 | |||
| 18 | RDEPENDS:${PN} = "\ | ||
| 19 | python3-packaging \ | ||
| 20 | python3-pip \ | ||
| 21 | python3-pyparsing \ | ||
| 22 | python3-setuptools \ | ||
| 23 | python3-typing-extensions \ | ||
| 24 | " | ||
| 25 | |||
| 26 | RDEPENDS:${PN}:append:class-target = " \ | ||
| 27 | python3-debugger \ | ||
| 28 | python3-json \ | ||
| 29 | " | ||
| 30 | |||
| 31 | BBCLASSEXTEND = "native nativesdk" | ||
