diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2019-05-31 17:56:07 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-01 21:43:30 +0100 |
commit | 5c0d4e59d4a12374a3460743d9805c7b75f56d6e (patch) | |
tree | f75e24036b295ae73e0ab78397e5bdbfdb30636a /meta | |
parent | 914c33e8ff77e6bb95ce9a46c9bde7fa2f45c583 (diff) | |
download | poky-5c0d4e59d4a12374a3460743d9805c7b75f56d6e.tar.gz |
python3-pygments: add a recipe
This is the new source highlighter used by gtk-doc.
(From OE-Core rev: 18ac8091728ede09024385cc71acff2b59500017)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/distro/include/maintainers.inc | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python3-pygments_2.4.2.bb | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/meta/conf/distro/include/maintainers.inc b/meta/conf/distro/include/maintainers.inc index a9a689fb09..35f10c2a91 100644 --- a/meta/conf/distro/include/maintainers.inc +++ b/meta/conf/distro/include/maintainers.inc | |||
@@ -602,6 +602,7 @@ RECIPE_MAINTAINER_pn-python3-numpy = "Derek Straka <derek@asterius.io>" | |||
602 | RECIPE_MAINTAINER_pn-python3-pbr = "Derek Straka <derek@asterius.io>" | 602 | RECIPE_MAINTAINER_pn-python3-pbr = "Derek Straka <derek@asterius.io>" |
603 | RECIPE_MAINTAINER_pn-python3-pip = "Derek Straka <derek@asterius.io>" | 603 | RECIPE_MAINTAINER_pn-python3-pip = "Derek Straka <derek@asterius.io>" |
604 | RECIPE_MAINTAINER_pn-python3-pycairo = "Derek Straka <derek@asterius.io>" | 604 | RECIPE_MAINTAINER_pn-python3-pycairo = "Derek Straka <derek@asterius.io>" |
605 | RECIPE_MAINTAINER_pn-python3-pygments = "Derek Straka <derek@asterius.io>" | ||
605 | RECIPE_MAINTAINER_pn-python3-pygobject = "Derek Straka <derek@asterius.io>" | 606 | RECIPE_MAINTAINER_pn-python3-pygobject = "Derek Straka <derek@asterius.io>" |
606 | RECIPE_MAINTAINER_pn-python3-setuptools = "Derek Straka <derek@asterius.io>" | 607 | RECIPE_MAINTAINER_pn-python3-setuptools = "Derek Straka <derek@asterius.io>" |
607 | RECIPE_MAINTAINER_pn-python3-six = "Derek Straka <derek@asterius.io>" | 608 | RECIPE_MAINTAINER_pn-python3-six = "Derek Straka <derek@asterius.io>" |
diff --git a/meta/recipes-devtools/python/python3-pygments_2.4.2.bb b/meta/recipes-devtools/python/python3-pygments_2.4.2.bb new file mode 100644 index 0000000000..35c0ac6a57 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pygments_2.4.2.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | SUMMARY = "Pygments is a syntax highlighting package written in Python." | ||
2 | DESCRIPTION = "Pygments is a syntax highlighting package written in Python." | ||
3 | HOMEPAGE = "http://pygments.org/" | ||
4 | LICENSE = "BSD-2-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e1d7b7bffbfeaa14083fd2bd3236aea8" | ||
6 | |||
7 | inherit setuptools3 | ||
8 | SRC_URI[md5sum] = "5ecc3fbb2a783e917b369271fc0e6cd1" | ||
9 | SRC_URI[sha256sum] = "881c4c157e45f30af185c1ffe8d549d48ac9127433f2c380c24b84572ad66297" | ||
10 | |||
11 | DEPENDS += "\ | ||
12 | ${PYTHON_PN} \ | ||
13 | " | ||
14 | |||
15 | PYPI_PACKAGE = "Pygments" | ||
16 | |||
17 | inherit pypi | ||
18 | |||
19 | BBCLASSEXTEND = "native nativesdk" | ||
20 | |||