diff options
author | Ross Burton <ross.burton@intel.com> | 2015-08-13 11:51:49 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-08-24 13:58:19 +0200 |
commit | c2cea10597ed1b843e00aa5ecedfd6005c7d7799 (patch) | |
tree | 886275b8d2f664910e74aaf1fda974b0ba7426fe /meta-python | |
parent | 6682d8db0346f2cb515c3b128033db21fedff06a (diff) | |
download | meta-openembedded-c2cea10597ed1b843e00aa5ecedfd6005c7d7799.tar.gz |
recipes: use class-native instead of deprecated virtclass-native.
virtclass overrides are deprecated, so use class overrides instead.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python-epydoc_3.0.1.bb | 2 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python-lxml_3.4.4.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python-epydoc_3.0.1.bb b/meta-python/recipes-devtools/python/python-epydoc_3.0.1.bb index 4ec066857..56880e505 100644 --- a/meta-python/recipes-devtools/python/python-epydoc_3.0.1.bb +++ b/meta-python/recipes-devtools/python/python-epydoc_3.0.1.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=011c0d78eb6054d731c879132d7313f0" | |||
5 | HOMEPAGE = "http://epydoc.sourceforge.net/" | 5 | HOMEPAGE = "http://epydoc.sourceforge.net/" |
6 | SRCNAME = "epydoc" | 6 | SRCNAME = "epydoc" |
7 | DEPENDS += "python" | 7 | DEPENDS += "python" |
8 | DEPENDS_virtclass-native += "python-native" | 8 | DEPENDS_class-native += "python-native" |
9 | 9 | ||
10 | SRC_URI = "http://downloads.sourceforge.net/project/${SRCNAME}/${SRCNAME}/${PV}/${SRCNAME}-${PV}.tar.gz" | 10 | SRC_URI = "http://downloads.sourceforge.net/project/${SRCNAME}/${SRCNAME}/${PV}/${SRCNAME}-${PV}.tar.gz" |
11 | SRC_URI[md5sum] = "cdd6f6c76dd8bab5e653a343a0544294" | 11 | SRC_URI[md5sum] = "cdd6f6c76dd8bab5e653a343a0544294" |
diff --git a/meta-python/recipes-devtools/python/python-lxml_3.4.4.bb b/meta-python/recipes-devtools/python/python-lxml_3.4.4.bb index 2480e4df9..4fab4f3d5 100644 --- a/meta-python/recipes-devtools/python/python-lxml_3.4.4.bb +++ b/meta-python/recipes-devtools/python/python-lxml_3.4.4.bb | |||
@@ -30,5 +30,5 @@ DISTUTILS_INSTALL_ARGS += " \ | |||
30 | BBCLASSEXTEND = "native nativesdk" | 30 | BBCLASSEXTEND = "native nativesdk" |
31 | 31 | ||
32 | RDEPENDS_${PN} += "libxml2 libxslt python-compression" | 32 | RDEPENDS_${PN} += "libxml2 libxslt python-compression" |
33 | RDEPENDS_${PN}_virtclass-native = "libxml2-native libxslt-native" | 33 | RDEPENDS_${PN}_class-native = "libxml2-native libxslt-native" |
34 | 34 | ||