diff options
Diffstat (limited to 'meta-oe/recipes-extended')
5 files changed, 11 insertions, 11 deletions
diff --git a/meta-oe/recipes-extended/konkretcmpi/konkretcmpi_0.9.2.bb b/meta-oe/recipes-extended/konkretcmpi/konkretcmpi_0.9.2.bb index 15a7965935..6b60d89187 100644 --- a/meta-oe/recipes-extended/konkretcmpi/konkretcmpi_0.9.2.bb +++ b/meta-oe/recipes-extended/konkretcmpi/konkretcmpi_0.9.2.bb | |||
| @@ -17,7 +17,7 @@ SRC_URI = "git://github.com/rnovacek/konkretcmpi.git;branch=master;protocol=http | |||
| 17 | SRCREV = "ad28225e6eceff88417a60c1ba8896c8e40f21a7" | 17 | SRCREV = "ad28225e6eceff88417a60c1ba8896c8e40f21a7" |
| 18 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
| 19 | 19 | ||
| 20 | inherit cmake | 20 | inherit cmake python3-dir |
| 21 | 21 | ||
| 22 | EXTRA_OECMAKE = "-DWITH_PYTHON=ON \ | 22 | EXTRA_OECMAKE = "-DWITH_PYTHON=ON \ |
| 23 | ${@oe.utils.conditional("libdir", "/usr/lib64", "-DLIB_SUFFIX=64", "", d)} \ | 23 | ${@oe.utils.conditional("libdir", "/usr/lib64", "-DLIB_SUFFIX=64", "", d)} \ |
| @@ -34,6 +34,6 @@ PACKAGES =+ "${PN}-python" | |||
| 34 | 34 | ||
| 35 | RPROVIDES:${PN}-dbg += "${PN}-python-dbg" | 35 | RPROVIDES:${PN}-dbg += "${PN}-python-dbg" |
| 36 | 36 | ||
| 37 | FILES:${PN}-python = "${libdir}/python*/site-packages/konkretmof.py* ${libdir}/python*/site-packages/_konkretmof.so" | 37 | FILES:${PN}-python = "${PYTHON_SITEPACKAGES_DIR}/konkretmof.py* ${PYTHON_SITEPACKAGES_DIR}/_konkretmof.so" |
| 38 | 38 | ||
| 39 | BBCLASSEXTEND = "native" | 39 | BBCLASSEXTEND = "native" |
diff --git a/meta-oe/recipes-extended/libblockdev/libblockdev_3.1.1.bb b/meta-oe/recipes-extended/libblockdev/libblockdev_3.1.1.bb index dd15146285..1ad8036d7b 100644 --- a/meta-oe/recipes-extended/libblockdev/libblockdev_3.1.1.bb +++ b/meta-oe/recipes-extended/libblockdev/libblockdev_3.1.1.bb | |||
| @@ -18,7 +18,7 @@ SRC_URI = "git://github.com/storaged-project/libblockdev;branch=3.1.x-devel;prot | |||
| 18 | SRCREV = "68aaff5556afe26be749c29a2b7cbd714dce3050" | 18 | SRCREV = "68aaff5556afe26be749c29a2b7cbd714dce3050" |
| 19 | S = "${WORKDIR}/git" | 19 | S = "${WORKDIR}/git" |
| 20 | 20 | ||
| 21 | FILES:${PN} += "${libdir}/python3.*/site-packages" | 21 | FILES:${PN} += "${PYTHON_SITEPACKAGES_DIR}" |
| 22 | 22 | ||
| 23 | PACKAGECONFIG ??= "python3 lvm lvm-dbus dm parted fs escrow btrfs crypto mdraid mpath nvdimm tools" | 23 | PACKAGECONFIG ??= "python3 lvm lvm-dbus dm parted fs escrow btrfs crypto mdraid mpath nvdimm tools" |
| 24 | PACKAGECONFIG[python3] = "--with-python3, --without-python3,,python3" | 24 | PACKAGECONFIG[python3] = "--with-python3, --without-python3,,python3" |
diff --git a/meta-oe/recipes-extended/libimobiledevice/libplist_2.3.0.bb b/meta-oe/recipes-extended/libimobiledevice/libplist_2.3.0.bb index 69e80ac0c8..81a3c26e04 100644 --- a/meta-oe/recipes-extended/libimobiledevice/libplist_2.3.0.bb +++ b/meta-oe/recipes-extended/libimobiledevice/libplist_2.3.0.bb | |||
| @@ -26,8 +26,8 @@ do_configure:prepend() { | |||
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | do_install:append () { | 28 | do_install:append () { |
| 29 | if [ -e ${D}${libdir}/python*/site-packages/plist/_plist.so ]; then | 29 | if [ -e ${D}${PYTHON_SITEPACKAGES_DIR}/plist/_plist.so ]; then |
| 30 | chrpath -d ${D}${libdir}/python*/site-packages/plist/_plist.so | 30 | chrpath -d ${D}${PYTHON_SITEPACKAGES_DIR}/plist/_plist.so |
| 31 | fi | 31 | fi |
| 32 | } | 32 | } |
| 33 | 33 | ||
| @@ -38,4 +38,4 @@ PACKAGES =+ "${PN}-utils \ | |||
| 38 | FILES:${PN} = "${libdir}/libplist-2.0${SOLIBS}" | 38 | FILES:${PN} = "${libdir}/libplist-2.0${SOLIBS}" |
| 39 | FILES:${PN}++ = "${libdir}/libplist++-2.0${SOLIBS}" | 39 | FILES:${PN}++ = "${libdir}/libplist++-2.0${SOLIBS}" |
| 40 | FILES:${PN}-utils = "${bindir}/*" | 40 | FILES:${PN}-utils = "${bindir}/*" |
| 41 | FILES:${PN}-python = "${libdir}/python*/site-packages/*" | 41 | FILES:${PN}-python = "${PYTHON_SITEPACKAGES_DIR}/*" |
diff --git a/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb b/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb index 26dd821f96..bfd4af053c 100644 --- a/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb +++ b/meta-oe/recipes-extended/libimobiledevice/libplist_git.bb | |||
| @@ -28,8 +28,8 @@ do_configure:prepend() { | |||
| 28 | } | 28 | } |
| 29 | 29 | ||
| 30 | do_install:append () { | 30 | do_install:append () { |
| 31 | if [ -e ${D}${libdir}/python*/site-packages/plist/_plist.so ]; then | 31 | if [ -e ${D}${PYTHON_SITEPACKAGES_DIR}/plist/_plist.so ]; then |
| 32 | chrpath -d ${D}${libdir}/python*/site-packages/plist/_plist.so | 32 | chrpath -d ${D}${PYTHON_SITEPACKAGES_DIR}/plist/_plist.so |
| 33 | fi | 33 | fi |
| 34 | } | 34 | } |
| 35 | 35 | ||
| @@ -40,4 +40,4 @@ PACKAGES =+ "${PN}-utils \ | |||
| 40 | FILES:${PN} = "${libdir}/libplist-2.0${SOLIBS}" | 40 | FILES:${PN} = "${libdir}/libplist-2.0${SOLIBS}" |
| 41 | FILES:${PN}++ = "${libdir}/libplist++-2.0${SOLIBS}" | 41 | FILES:${PN}++ = "${libdir}/libplist++-2.0${SOLIBS}" |
| 42 | FILES:${PN}-utils = "${bindir}/*" | 42 | FILES:${PN}-utils = "${bindir}/*" |
| 43 | FILES:${PN}-python = "${libdir}/python*/site-packages/*" | 43 | FILES:${PN}-python = "${PYTHON_SITEPACKAGES_DIR}/*" |
diff --git a/meta-oe/recipes-extended/rrdtool/rrdtool_1.8.0.bb b/meta-oe/recipes-extended/rrdtool/rrdtool_1.8.0.bb index f0c083c6db..cbe1af2854 100644 --- a/meta-oe/recipes-extended/rrdtool/rrdtool_1.8.0.bb +++ b/meta-oe/recipes-extended/rrdtool/rrdtool_1.8.0.bb | |||
| @@ -124,8 +124,8 @@ RDEPENDS:${PN}-perl = "perl perl-module-lib perl-module-getopt-long perl-module- | |||
| 124 | 124 | ||
| 125 | DESCRIPTION:${PN}-python = \ | 125 | DESCRIPTION:${PN}-python = \ |
| 126 | "The ${PN}-python package includes RRDtool bindings for python." | 126 | "The ${PN}-python package includes RRDtool bindings for python." |
| 127 | FILES:${PN}-python = "${libdir}/python${PYTHON_BASEVERSION}/site-packages/*" | 127 | FILES:${PN}-python = "${PYTHON_SITEPACKAGES_DIR}/*" |
| 128 | RDEPENDS:${PN}-python = "python3" | 128 | RDEPENDS:${PN}-python = "python3" |
| 129 | 129 | ||
| 130 | FILES:${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/RRDs/.debug \ | 130 | FILES:${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/RRDs/.debug \ |
| 131 | ${libdir}/python${PYTHON_BASEVERSION}/site-packages/.debug" | 131 | ${PYTHON_SITEPACKAGES_DIR}/.debug" |
