diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-31 21:51:06 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-18 23:27:27 +0000 |
commit | fb2205b9193294f6018cfdc4f3a2264379fef6d9 (patch) | |
tree | 927fe22726e925bfb057c4ca390b2c4a7980b0c9 | |
parent | cf72cec468f0fba30aac13e5765cab4aa8ea50b2 (diff) | |
download | poky-fb2205b9193294f6018cfdc4f3a2264379fef6d9.tar.gz |
python3-snowballstemmer: Add new recipe
Add a recipe needed for sphinx support
Based on a patch from Armin Kuster <akuster808@gmail.com>
(From OE-Core rev: 95e0813b372b3a12c3b24731345df3db2068110b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python3-snowballstemmer_2.2.0.bb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-snowballstemmer_2.2.0.bb b/meta/recipes-devtools/python/python3-snowballstemmer_2.2.0.bb new file mode 100644 index 0000000000..ff120a3fc4 --- /dev/null +++ b/meta/recipes-devtools/python/python3-snowballstemmer_2.2.0.bb | |||
@@ -0,0 +1,13 @@ | |||
1 | SUMMARY = "Snowball compiler and stemming algorithms" | ||
2 | HOMEPAGE = "https://github.com/snowballstem/snowball" | ||
3 | |||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=19139aaf3c8c8fa1ca6edd59c072fb9f" | ||
6 | |||
7 | SRC_URI[sha256sum] = "09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1" | ||
8 | |||
9 | PYPI_PACKAGE = "snowballstemmer" | ||
10 | |||
11 | inherit pypi setuptools3 | ||
12 | |||
13 | BBCLASSEXTEND = "native nativesdk" | ||