diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-02-26 07:24:31 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-02-26 08:30:54 -0800 |
| commit | 6f046ca1e5c95cf45b28ae613f5c2c7d6d1e58c0 (patch) | |
| tree | ffd8db0ec00fdbf8095cb5e2cc1e415fbc95d9c3 /meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb | |
| parent | 18e7f56626a11d558c2750f834fe5afdb557f3e2 (diff) | |
| download | meta-openembedded-6f046ca1e5c95cf45b28ae613f5c2c7d6d1e58c0.tar.gz | |
python3-setproctitle: upgrade 1.3.4 -> 1.3.5
Changelog:
===========
- Modernizing handling of bool type.
- docs: add release note about C23 compilers fix
- fix: modernize handling of bool type
- Preventing bouncing Dock icon when using setproctitle on newer macOS versions.
- docs: add history note about bouncy macOS fix
- fix(macOS): prevent bouncing Dock icon on newer macOS versions
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb b/meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb new file mode 100644 index 0000000000..cf03bc3b51 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-setproctitle_1.3.5.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | SUMMARY = "A Python module to customize the process title" | ||
| 2 | DESCRIPTION = "The setproctitle module allows a process to change its \ | ||
| 3 | title (as displayed by system tools such as ps, top or MacOS Activity \ | ||
| 4 | Monitor)." | ||
| 5 | HOMEPAGE = "https://github.com/dvarrazzo/py-setproctitle" | ||
| 6 | BUGTRACKER = "https://github.com/dvarrazzo/py-setproctitle/issues" | ||
| 7 | LICENSE = "BSD-3-Clause" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=86d2d41b5f4f023f43466f8cb7adebaa" | ||
| 9 | |||
| 10 | inherit pypi setuptools3 ptest | ||
| 11 | |||
| 12 | SRC_URI[sha256sum] = "1e6eaeaf8a734d428a95d8c104643b39af7d247d604f40a7bebcf3960a853c5e" | ||
| 13 | |||
| 14 | SRC_URI += " \ | ||
| 15 | file://run-ptest \ | ||
| 16 | " | ||
| 17 | |||
| 18 | RDEPENDS:${PN}-ptest += "\ | ||
| 19 | packagegroup-core-buildessential \ | ||
| 20 | procps-ps \ | ||
| 21 | python3-dev \ | ||
| 22 | python3-multiprocessing \ | ||
| 23 | python3-pytest \ | ||
| 24 | python3-unittest-automake-output \ | ||
| 25 | " | ||
| 26 | |||
| 27 | do_install_ptest() { | ||
| 28 | install -d ${D}${PTEST_PATH}/tests | ||
| 29 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 30 | } | ||
| 31 | |||
| 32 | BBCLASSEXTEND = "native nativesdk" | ||
| 33 | |||
| 34 | INSANE_SKIP:${PN}-ptest = "dev-deps" | ||
