diff options
author | Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> | 2018-07-03 01:23:49 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-07-03 17:42:25 -0700 |
commit | 7ccfc9d818f08a9d1d2a44d5d527b64270dc674b (patch) | |
tree | 4c6abe04d828fa16ec8ee037ab93c8eb7cf522b2 /meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings_1.0.1.bb | |
parent | b837e58eea4a81cb68c18bdd69a7ebf496838874 (diff) | |
download | meta-openembedded-7ccfc9d818f08a9d1d2a44d5d527b64270dc674b.tar.gz |
cmpi-bindings: rename
Rename cmpi-bindings from cmpi-bindings_git.bb to cmpi-bindings_1.0.1.bb.
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings_1.0.1.bb')
-rw-r--r-- | meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings_1.0.1.bb | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings_1.0.1.bb b/meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings_1.0.1.bb new file mode 100644 index 000000000..987c09fe5 --- /dev/null +++ b/meta-oe/recipes-extended/cmpi-bindings/cmpi-bindings_1.0.1.bb | |||
@@ -0,0 +1,40 @@ | |||
1 | SUMMARY = "Adapter to write and run CMPI-type CIM providers" | ||
2 | DESCRIPTION = "CMPI-compliant provider interface for various languages via SWIG" | ||
3 | HOMEPAGE = "http://github.com/kkaempf/cmpi-bindings" | ||
4 | LICENSE = "BSD" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=b19ee058d2d5f69af45da98051d91064" | ||
6 | SECTION = "Development/Libraries" | ||
7 | DEPENDS = "swig-native python3 sblim-cmpi-devel" | ||
8 | |||
9 | SRC_URI = "git://github.com/kkaempf/cmpi-bindings.git;protocol=http \ | ||
10 | file://cmpi-bindings-0.4.17-no-ruby-perl.patch \ | ||
11 | file://cmpi-bindings-0.4.17-sblim-sigsegv.patch \ | ||
12 | file://cmpi-bindings-0.9.5-python-lib-dir.patch \ | ||
13 | file://0001-Modify-cmakelist.patch \ | ||
14 | file://0001-Fix-error.patch \ | ||
15 | file://0001-fix-the-build-error-when-python-3.0.patch \ | ||
16 | file://0001-Add-PYTHON_ABI-suffix-to-the-python-library-name.patch \ | ||
17 | " | ||
18 | |||
19 | SRCREV = "62f60e065aa1b901f826e4f530c0573ae32d065e" | ||
20 | S = "${WORKDIR}/git" | ||
21 | |||
22 | inherit cmake python3native | ||
23 | |||
24 | EXTRA_OECMAKE = "-DLIB='${baselib}' \ | ||
25 | -DPYTHON_INCLUDE_PATH=${STAGING_INCDIR}/python${PYTHON_BASEVERSION}" | ||
26 | |||
27 | # With Ninja it fails with: | ||
28 | # ninja: error: build.ninja:282: bad $-escape (literal $ must be written as $$) | ||
29 | OECMAKE_GENERATOR = "Unix Makefiles" | ||
30 | |||
31 | do_configure_prepend() { | ||
32 | export STAGING_LIBDIR=${STAGING_LIBDIR} | ||
33 | export STAGING_INCDIR=${STAGING_INCDIR} | ||
34 | export ENV_INSTALL_PATH=${PYTHON_SITEPACKAGES_DIR} | ||
35 | } | ||
36 | |||
37 | FILES_${PN} =+"${libdir}/cmpi/libpyCmpiProvider.so ${PYTHON_SITEPACKAGES_DIR}/*" | ||
38 | FILES_${PN}-dbg =+ "${libdir}/cmpi/.debug/libpyCmpiProvider.so" | ||
39 | |||
40 | BBCLASSEXTEND = "native" | ||