summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
diff options
context:
space:
mode:
authorhongxu <hongxu.jia@eng.windriver.com>2024-08-23 09:48:05 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-08-23 22:43:27 +0100
commitc4c681cdd7d3b92efa1155b42b1471a067edbe21 (patch)
tree62afe39237eb975956757894a7f8ef3c9893a601 /meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
parent904c24652b1cb0d00a71dd90080410a6c788f654 (diff)
downloadpoky-c4c681cdd7d3b92efa1155b42b1471a067edbe21.tar.gz
xmlto: 0.0.28 -> 0.0.29
* Do not tweak var-PV in recipe * Rename variable BASH to XMLTO_BASH_PATH [1] [1] https://pagure.io/xmlto/c/5030f081b0e2d94d791b62ee6da0831026cf57e0?branch=master (From OE-Core rev: 7b603b7c2613993bcad3038af0dfd131a38972d3) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/xmlto/xmlto_0.0.28.bb')
-rw-r--r--meta/recipes-devtools/xmlto/xmlto_0.0.28.bb48
1 files changed, 0 insertions, 48 deletions
diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
deleted file mode 100644
index d5a0e69849..0000000000
--- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
+++ /dev/null
@@ -1,48 +0,0 @@
1SUMMARY = "A shell-script tool for converting XML files to various formats"
2HOMEPAGE = "https://pagure.io/xmlto"
3DESCRIPTION = "Utility xmlto is a simple shell-script tool for converting XML files to various formats. It serves as easy to use command line frontend to make fine output without remembering many long options and searching for the syntax of the backends."
4SECTION = "docs/xmlto"
5LICENSE = "GPL-2.0-only"
6
7LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
8
9SRCREV = "6fa6a0e07644f20abf2596f78a60112713e11cbe"
10UPSTREAM_CHECK_COMMITS = "1"
11SRC_URI = "git://pagure.io/xmlto.git;protocol=https;branch=master"
12S = "${WORKDIR}/git"
13
14PV .= "+0.0.29+git"
15
16inherit autotools
17
18CLEANBROKEN = "1"
19
20DEPENDS = "libxml2-native libxslt-native flex-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native"
21
22RDEPENDS:${PN} = "docbook-xml-dtd4 \
23 docbook-xsl-stylesheets \
24 util-linux \
25 libxml2 \
26 libxslt \
27 bash \
28"
29RDEPENDS:${PN}:append:class-target = " \
30 libxml2-utils \
31 libxslt-bin \
32 coreutils \
33"
34CACHED_CONFIGUREVARS += "ac_cv_path_TAIL=tail ac_cv_path_GREP=grep ac_cv_path_XMLLINT=xmllint ac_cv_path_XSLTPROC=xsltproc"
35
36BBCLASSEXTEND = "native"
37
38EXTRA_OECONF:append = " BASH=/bin/bash GCP=/bin/cp"
39
40do_configure:prepend() {
41 (cd ${S} && flex -o xmlif/xmlif.c xmlif/xmlif.l)
42}
43
44do_install:append:class-native() {
45 create_wrapper ${D}${bindir}/xmlto XML_CATALOG_FILES=${sysconfdir}/xml/catalog
46}
47
48do_populate_sysroot[rdeptask] = "do_populate_sysroot"