diff options
-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" | ||