summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-setproctitle_1.3.4.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-setproctitle_1.3.4.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-setproctitle_1.3.4.bb34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-setproctitle_1.3.4.bb b/meta-python/recipes-devtools/python/python3-setproctitle_1.3.4.bb
new file mode 100644
index 0000000000..24200533f5
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-setproctitle_1.3.4.bb
@@ -0,0 +1,34 @@
1SUMMARY = "A Python module to customize the process title"
2DESCRIPTION = "The setproctitle module allows a process to change its \
3title (as displayed by system tools such as ps, top or MacOS Activity \
4Monitor)."
5HOMEPAGE = "https://github.com/dvarrazzo/py-setproctitle"
6BUGTRACKER = "https://github.com/dvarrazzo/py-setproctitle/issues"
7LICENSE = "BSD-3-Clause"
8LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=86d2d41b5f4f023f43466f8cb7adebaa"
9
10inherit pypi setuptools3 ptest
11
12SRC_URI[sha256sum] = "3b40d32a3e1f04e94231ed6dfee0da9e43b4f9c6b5450d53e6dd7754c34e0c50"
13
14SRC_URI += " \
15 file://run-ptest \
16"
17
18RDEPENDS:${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
27do_install_ptest() {
28 install -d ${D}${PTEST_PATH}/tests
29 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
30}
31
32BBCLASSEXTEND = "native nativesdk"
33
34INSANE_SKIP:${PN}-ptest = "dev-deps"