diff options
| author | Vyacheslav Yurkov <Vyacheslav.Yurkov@bruker.com> | 2020-04-08 14:35:51 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-04-08 11:21:13 -0700 |
| commit | 26801c58ee2b0621bd55fc6269abc874d5da5017 (patch) | |
| tree | cdffedc79971943ff142e4ec67542cdc142d828f | |
| parent | 0e34b28d2e81a399aa7b6ef685fde20b3670bd6e (diff) | |
| download | meta-openembedded-26801c58ee2b0621bd55fc6269abc874d5da5017.tar.gz | |
python3-arpeggio: add new recipe
Arpeggio is a recursive descent parser with memoization based on
PEG grammars (aka Packrat parser)
Signed-off-by: Vyacheslav Yurkov <Vyacheslav.Yurkov@bruker.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-arpeggio_1.9.2.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-arpeggio_1.9.2.bb b/meta-python/recipes-devtools/python/python3-arpeggio_1.9.2.bb new file mode 100644 index 0000000000..802a5b2eaa --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-arpeggio_1.9.2.bb | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | SUMMARY = "Arpeggio is a recursive descent parser with memoization based on PEG grammars (aka Packrat parser)" | ||
| 2 | HOMEPAGE = "https://pypi.org/project/Arpeggio/" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=33b8d1ba459a2fa4d801acfd1d1b7ceb" | ||
| 5 | |||
| 6 | SRC_URI[md5sum] = "39667a626217c670bc634444be6e904a" | ||
| 7 | SRC_URI[sha256sum] = "948ce06163a48a72c97f4fe79ad3d1c1330b6fec4f22ece182fb60ef60bd022b" | ||
| 8 | |||
| 9 | PYPI_PACKAGE = "Arpeggio" | ||
| 10 | inherit pypi setuptools3 | ||
| 11 | |||
| 12 | # setup.py of Arpeggio needs this. | ||
| 13 | DEPENDS += "${PYTHON_PN}-pytest-runner-native" | ||
| 14 | |||
| 15 | BBCLASSEXTEND = "native nativesdk" | ||
