diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-05-05 17:18:47 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-09 23:30:14 +0100 |
commit | 7572042364dcb601f8078dff303fb6a3cc4a8466 (patch) | |
tree | 7b25e256bd298052b308284516a7deafecc9c36f /meta/recipes-gnome/gi-docgen | |
parent | 13e4ff2250ad965db333a9bdfb918e574fd00235 (diff) | |
download | poky-7572042364dcb601f8078dff303fb6a3cc4a8466.tar.gz |
gi-docgen: add a recipe and class
This seems to be the gtk-doc successor, and gnome
projects such as pango and gdk-pixbuf have started
transitioning to it.
(From OE-Core rev: f87bb7d848015c371095ef3ff423eee81e6d8ecd)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gi-docgen')
-rw-r--r-- | meta/recipes-gnome/gi-docgen/gi-docgen_git.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-gnome/gi-docgen/gi-docgen_git.bb b/meta/recipes-gnome/gi-docgen/gi-docgen_git.bb new file mode 100644 index 0000000000..4d779a9bdd --- /dev/null +++ b/meta/recipes-gnome/gi-docgen/gi-docgen_git.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Documentation tool for GObject-based libraries" | ||
2 | DESCRIPTION = "GI-DocGen is a document generator for GObject-based libraries. GObject is \ | ||
3 | the base type system of the GNOME project. GI-Docgen reuses the \ | ||
4 | introspection data generated by GObject-based libraries to generate the API \ | ||
5 | reference of these libraries, as well as other ancillary documentation." | ||
6 | HOMEPAGE = "https://gnome.pages.gitlab.gnome.org/gi-docgen/" | ||
7 | |||
8 | LICENSE = "GPLv3+ & Apache-2.0" | ||
9 | LIC_FILES_CHKSUM = "file://gi-docgen.py;beginline=1;endline=5;md5=2dc0f1f01202478cfe813c0e7f80b326" | ||
10 | |||
11 | SRC_URI = "git://gitlab.gnome.org/GNOME/gi-docgen.git;protocol=https;branch=main" | ||
12 | |||
13 | PV = "2021.5" | ||
14 | SRCREV = "7dee859321573f9c843ef7fb136f11142cb6ddf8" | ||
15 | |||
16 | S = "${WORKDIR}/git" | ||
17 | |||
18 | inherit setuptools3 | ||
19 | |||
20 | RDEPENDS_${PN} += "python3-asyncio python3-core python3-jinja2 python3-json python3-markdown python3-markupsafe python3-pygments python3-toml python3-typogrify python3-xml" | ||
21 | |||
22 | BBCLASSEXTEND = "native" | ||