diff options
author | wangmy <wangmy@fujitsu.com> | 2022-03-08 07:57:35 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-09 11:46:27 +0000 |
commit | 6225b5e343c95569f9a6080ab7f2564c2a7902c8 (patch) | |
tree | c3f6fd5667d298674aab0ceacabdc1703225b359 /meta/recipes-extended/asciidoc/asciidoc_10.1.4.bb | |
parent | 8d0e8ee0da0c670b073ef844682275e9668b2bb9 (diff) | |
download | poky-6225b5e343c95569f9a6080ab7f2564c2a7902c8.tar.gz |
asciidoc: upgrade 10.1.3 -> 10.1.4
License-Update: year updated to 2022.
Changelog:
=========
.Bug fixes
- Add missing test py files to dist archives
- Fix DeprecationWarnings in a2x regexes
(From OE-Core rev: 0e964d4bcf0061297ac2194d4de0367744a2ed89)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/asciidoc/asciidoc_10.1.4.bb')
-rw-r--r-- | meta/recipes-extended/asciidoc/asciidoc_10.1.4.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-extended/asciidoc/asciidoc_10.1.4.bb b/meta/recipes-extended/asciidoc/asciidoc_10.1.4.bb new file mode 100644 index 0000000000..484250b33e --- /dev/null +++ b/meta/recipes-extended/asciidoc/asciidoc_10.1.4.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "Tool for creating HTML, PDF, EPUB, man pages" | ||
2 | DESCRIPTION = "AsciiDoc is a text document format for writing short documents, \ | ||
3 | articles, books and UNIX man pages." | ||
4 | |||
5 | HOMEPAGE = "http://asciidoc.org/" | ||
6 | |||
7 | LICENSE = "GPL-2.0-only" | ||
8 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=aaee33adce0fc7cc40fee23f82f7f101 \ | ||
9 | file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
10 | " | ||
11 | |||
12 | SRC_URI = "git://github.com/asciidoc/asciidoc-py;protocol=https;branch=main" | ||
13 | SRCREV = "c724bbf95b1840b04bb298a61a72b6a5ea94c2ef" | ||
14 | |||
15 | DEPENDS = "libxml2-native libxslt-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native" | ||
16 | |||
17 | S = "${WORKDIR}/git" | ||
18 | |||
19 | # Tell xmllint where to find the DocBook XML catalogue, because right now it | ||
20 | # opens /etc/xml/catalog on the host. Depends on auto-catalogs.patch | ||
21 | export SGML_CATALOG_FILES="file://${STAGING_ETCDIR_NATIVE}/xml/catalog" | ||
22 | |||
23 | inherit setuptools3 | ||
24 | PIP_INSTALL_PACKAGE = "asciidoc" | ||
25 | CLEANBROKEN = "1" | ||
26 | |||
27 | BBCLASSEXTEND = "native nativesdk" | ||
28 | |||
29 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))$" | ||