[oe-commits] [meta-openembedded] 03/05: xfce-panel-plugin.bbclass: correct SRC_URI with xfce_verdir

git at git.openembedded.org git at git.openembedded.org
Fri Nov 8 18:05:42 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 53724ff23d30742242f1f214efd709f70af304cd
Author: Kai Kang <kai.kang at windriver.com>
AuthorDate: Fri Nov 8 18:22:35 2019 +0800

    xfce-panel-plugin.bbclass: correct SRC_URI with xfce_verdir
    
    The SRC_URI is wrongly calculated in xfce-panel-plugin.bbclass when the
    length of first 2 parts(separated by dot(.)) of PV is longer than 3 such
    as 0.10. It should use function xfce_verdir() instead which is
    introduced by xfce.bbclass.
    
    Signed-off-by: Kai Kang <kai.kang at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-xfce/classes/xfce-panel-plugin.bbclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-xfce/classes/xfce-panel-plugin.bbclass b/meta-xfce/classes/xfce-panel-plugin.bbclass
index 29c1245..f34ee07 100644
--- a/meta-xfce/classes/xfce-panel-plugin.bbclass
+++ b/meta-xfce/classes/xfce-panel-plugin.bbclass
@@ -4,11 +4,11 @@ REQUIRED_DISTRO_FEATURES = "x11"
 
 DEPENDS += "libxfce4ui libxfce4util xfce4-panel"
 
-SRC_URI = "http://archive.xfce.org/src/panel-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2"
+SRC_URI = "http://archive.xfce.org/src/panel-plugins/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2"
 
 FILES_${PN} += "${datadir}/xfce4/panel-plugins/"
 FILES_${PN} += "${datadir}/xfce4/panel/plugins/"
 FILES_${PN} += "${libdir}/xfce4/panel-plugins/*.so"
 FILES_${PN} += "${libdir}/xfce4/panel/plugins/*.so"
 
-FILES_${PN}-dev += "${libdir}/xfce4/panel/plugins/*.la"
\ No newline at end of file
+FILES_${PN}-dev += "${libdir}/xfce4/panel/plugins/*.la"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list