diff options
author | Ming Liu <liu.ming50@gmail.com> | 2020-02-01 18:47:19 +0100 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2020-02-03 17:10:58 -0500 |
commit | 9124baa325e9ee6994f2688089c9cc564131c2d4 (patch) | |
tree | 593e78c8c5b9a0fc1f9e98abb5914be5a7114eb4 | |
parent | c487e0f511ab5bf61e559ba8476fab232369633c (diff) | |
download | meta-virtualization-9124baa325e9ee6994f2688089c9cc564131c2d4.tar.gz |
python3-fastentrypoints: add recipe
python3-fastentrypoints is a python module that make entry_points
specified in setup.py load more quickly.
Signed-off-by: Ming Liu <liu.ming50@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-devtools/python/python3-fastentrypoints_0.12.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes-devtools/python/python3-fastentrypoints_0.12.bb b/recipes-devtools/python/python3-fastentrypoints_0.12.bb new file mode 100644 index 00000000..7bd16515 --- /dev/null +++ b/recipes-devtools/python/python3-fastentrypoints_0.12.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "Make entry_points specified in setup.py load more quickly" | ||
2 | DESCRIPTION = "Using entry_points in your setup.py makes scripts that start \ | ||
3 | really slowly because it imports pkg_resources, which is a horrible \ | ||
4 | thing to do if you want your trivial script to execute more or less \ | ||
5 | instantly. fastentrypoints aims to fix that bypassing pkg_resources, \ | ||
6 | making scripts load a lot faster." | ||
7 | HOMEPAGE = "https://github.com/ninjaaron/fast-entry_points" | ||
8 | SECTION = "devel/python" | ||
9 | |||
10 | LICENSE = "BSD-2-Clause" | ||
11 | LIC_FILES_CHKSUM = "file://README.rst;md5=f212a0cb34eb678477972d2011fb365a" | ||
12 | |||
13 | inherit pypi setuptools3 | ||
14 | |||
15 | SRC_URI[md5sum] = "390ad9a9229164a06156a5b1f0ef1b22" | ||
16 | SRC_URI[sha256sum] = "ff284f1469bd65400599807d2c6284d5b251398e6e28811f5f77fd262292410b" | ||
17 | |||
18 | BBCLASSEXTEND = "native nativesdk" | ||