summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/dnf-plugin-tui
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-07-29 17:04:53 +0200
committerKhem Raj <raj.khem@gmail.com>2021-08-03 10:21:25 -0700
commitc61dc077bbd81260e4f167fa2251643ba0ba6974 (patch)
tree66c3243f8f64ae60f66f70a16e8128c247254a65 /meta-oe/recipes-devtools/dnf-plugin-tui
parentc5f7cfb8db54cfa4257797db5bd87828dea43296 (diff)
downloadmeta-openembedded-c61dc077bbd81260e4f167fa2251643ba0ba6974.tar.gz
Convert to new override syntax
This is the result of automated script (0.9.1) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/dnf-plugin-tui')
-rw-r--r--meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_git.bb10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_git.bb b/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_git.bb
index 887b2a4f3b..8835f3233d 100644
--- a/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_git.bb
+++ b/meta-oe/recipes-devtools/dnf-plugin-tui/dnf-plugin-tui_git.bb
@@ -7,13 +7,13 @@ SRC_URI = "git://github.com/ubinux/dnf-plugin-tui.git;branch=master "
7SRCREV = "6d3fab9b9559b6a483fe668e39c29126cdbb58d8" 7SRCREV = "6d3fab9b9559b6a483fe668e39c29126cdbb58d8"
8PV = "1.2" 8PV = "1.2"
9 9
10SRC_URI_append_class-target = " file://oe-remote.repo.sample" 10SRC_URI:append:class-target = " file://oe-remote.repo.sample"
11 11
12inherit distutils3-base 12inherit distutils3-base
13 13
14S = "${WORKDIR}/git" 14S = "${WORKDIR}/git"
15 15
16do_install_append() { 16do_install:append() {
17 install -d ${D}${datadir}/dnf 17 install -d ${D}${datadir}/dnf
18 install -m 0755 ${S}/samples/* ${D}${datadir}/dnf 18 install -m 0755 ${S}/samples/* ${D}${datadir}/dnf
19 install -d ${D}${PYTHON_SITEPACKAGES_DIR}/dnf-plugins/mkimg 19 install -d ${D}${PYTHON_SITEPACKAGES_DIR}/dnf-plugins/mkimg
@@ -23,14 +23,14 @@ do_install_append() {
23 done 23 done
24} 24}
25 25
26do_install_append_class-target() { 26do_install:append:class-target() {
27 install -d ${D}${sysconfdir}/yum.repos.d 27 install -d ${D}${sysconfdir}/yum.repos.d
28 install -m 0644 ${WORKDIR}/oe-remote.repo.sample ${D}${sysconfdir}/yum.repos.d 28 install -m 0644 ${WORKDIR}/oe-remote.repo.sample ${D}${sysconfdir}/yum.repos.d
29} 29}
30 30
31FILES_${PN} += "${datadir}/dnf" 31FILES:${PN} += "${datadir}/dnf"
32 32
33RDEPENDS_${PN} += " \ 33RDEPENDS:${PN} += " \
34 bash \ 34 bash \
35 dnf \ 35 dnf \
36 libnewt-python \ 36 libnewt-python \