summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMing Liu <liu.ming50@gmail.com>2020-02-01 18:47:19 +0100
committerBruce Ashfield <bruce.ashfield@gmail.com>2020-02-03 17:10:58 -0500
commit9124baa325e9ee6994f2688089c9cc564131c2d4 (patch)
tree593e78c8c5b9a0fc1f9e98abb5914be5a7114eb4
parentc487e0f511ab5bf61e559ba8476fab232369633c (diff)
downloadmeta-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.bb18
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 @@
1SUMMARY = "Make entry_points specified in setup.py load more quickly"
2DESCRIPTION = "Using entry_points in your setup.py makes scripts that start \
3really slowly because it imports pkg_resources, which is a horrible \
4thing to do if you want your trivial script to execute more or less \
5instantly. fastentrypoints aims to fix that bypassing pkg_resources, \
6making scripts load a lot faster."
7HOMEPAGE = "https://github.com/ninjaaron/fast-entry_points"
8SECTION = "devel/python"
9
10LICENSE = "BSD-2-Clause"
11LIC_FILES_CHKSUM = "file://README.rst;md5=f212a0cb34eb678477972d2011fb365a"
12
13inherit pypi setuptools3
14
15SRC_URI[md5sum] = "390ad9a9229164a06156a5b1f0ef1b22"
16SRC_URI[sha256sum] = "ff284f1469bd65400599807d2c6284d5b251398e6e28811f5f77fd262292410b"
17
18BBCLASSEXTEND = "native nativesdk"