diff options
| author | Adrian Bunk <bunk@stusta.de> | 2019-11-04 21:10:47 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-05 10:37:12 +0000 |
| commit | 8410fde8b9dadaae649e6569c31d89bbfef7bf37 (patch) | |
| tree | 0204eec648140c98af9ba666e2320987402afa7e /meta/recipes-devtools/python/python3_3.7.4.bb | |
| parent | 9ccdd97d18d83c796f80ec0dbe54b0c6a0fd7e7c (diff) | |
| download | poky-8410fde8b9dadaae649e6569c31d89bbfef7bf37.tar.gz | |
python3: Upgrade 3.7.4 -> 3.7.5
Backported patches removed.
(From OE-Core rev: 87f77ac60f57e6b3bfb2b3f3f5877b8d90cf22b8)
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3_3.7.4.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3_3.7.4.bb | 342 |
1 files changed, 0 insertions, 342 deletions
diff --git a/meta/recipes-devtools/python/python3_3.7.4.bb b/meta/recipes-devtools/python/python3_3.7.4.bb deleted file mode 100644 index dd61c0aa45..0000000000 --- a/meta/recipes-devtools/python/python3_3.7.4.bb +++ /dev/null | |||
| @@ -1,342 +0,0 @@ | |||
| 1 | SUMMARY = "The Python Programming Language" | ||
| 2 | HOMEPAGE = "http://www.python.org" | ||
| 3 | LICENSE = "PSFv2" | ||
| 4 | SECTION = "devel/python" | ||
| 5 | |||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e466242989bd33c1bd2b6a526a742498" | ||
| 7 | |||
| 8 | SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.xz \ | ||
| 9 | file://run-ptest \ | ||
| 10 | file://create_manifest3.py \ | ||
| 11 | file://get_module_deps3.py \ | ||
| 12 | file://python3-manifest.json \ | ||
| 13 | file://check_build_completeness.py \ | ||
| 14 | file://cgi_py.patch \ | ||
| 15 | file://0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch \ | ||
| 16 | ${@bb.utils.contains('PACKAGECONFIG', 'tk', '', 'file://avoid_warning_about_tkinter.patch', d)} \ | ||
| 17 | file://0001-Do-not-use-the-shell-version-of-python-config-that-w.patch \ | ||
| 18 | file://python-config.patch \ | ||
| 19 | file://0001-Makefile.pre-use-qemu-wrapper-when-gathering-profile.patch \ | ||
| 20 | file://0001-Do-not-hardcode-lib-as-location-for-site-packages-an.patch \ | ||
| 21 | file://0001-python3-use-cc_basename-to-replace-CC-for-checking-c.patch \ | ||
| 22 | file://0002-Don-t-do-runtime-test-to-get-float-byte-order.patch \ | ||
| 23 | file://0003-setup.py-pass-missing-libraries-to-Extension-for-mul.patch \ | ||
| 24 | file://0001-Lib-sysconfig.py-fix-another-place-where-lib-is-hard.patch \ | ||
| 25 | file://0001-Makefile-fix-Issue36464-parallel-build-race-problem.patch \ | ||
| 26 | file://0001-bpo-36852-proper-detection-of-mips-architecture-for-.patch \ | ||
| 27 | file://crosspythonpath.patch \ | ||
| 28 | file://reformat_sysconfig.py \ | ||
| 29 | file://0001-Use-FLAG_REF-always-for-interned-strings.patch \ | ||
| 30 | file://0001-test_locale.py-correct-the-test-output-format.patch \ | ||
| 31 | file://0017-setup.py-do-not-report-missing-dependencies-for-disa.patch \ | ||
| 32 | file://0001-bpo-34155-Dont-parse-domains-containing-GH-13079.patch \ | ||
| 33 | file://0001-bpo-38243-xmlrpc.server-Escape-the-server_title-GH-1.patch \ | ||
| 34 | " | ||
| 35 | |||
| 36 | SRC_URI_append_class-native = " \ | ||
| 37 | file://0001-distutils-sysconfig-append-STAGING_LIBDIR-python-sys.patch \ | ||
| 38 | file://12-distutils-prefix-is-inside-staging-area.patch \ | ||
| 39 | " | ||
| 40 | SRC_URI_append_class-nativesdk = " \ | ||
| 41 | file://0001-main.c-if-OEPYTHON3HOME-is-set-use-instead-of-PYTHON.patch \ | ||
| 42 | " | ||
| 43 | |||
| 44 | SRC_URI[md5sum] = "d33e4aae66097051c2eca45ee3604803" | ||
| 45 | SRC_URI[sha256sum] = "fb799134b868199930b75f26678f18932214042639cd52b16da7fd134cd9b13f" | ||
| 46 | |||
| 47 | # exclude pre-releases for both python 2.x and 3.x | ||
| 48 | UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar" | ||
| 49 | |||
| 50 | CVE_PRODUCT = "python" | ||
| 51 | |||
| 52 | PYTHON_MAJMIN = "3.7" | ||
| 53 | PYTHON_BINABI = "${PYTHON_MAJMIN}m" | ||
| 54 | |||
| 55 | S = "${WORKDIR}/Python-${PV}" | ||
| 56 | |||
| 57 | BBCLASSEXTEND = "native nativesdk" | ||
| 58 | |||
| 59 | inherit autotools pkgconfig qemu ptest multilib_header update-alternatives | ||
| 60 | |||
| 61 | MULTILIB_SUFFIX = "${@d.getVar('base_libdir',1).split('/')[-1]}" | ||
| 62 | |||
| 63 | ALTERNATIVE_${PN}-dev = "python3-config" | ||
| 64 | ALTERNATIVE_LINK_NAME[python3-config] = "${bindir}/python${PYTHON_BINABI}-config" | ||
| 65 | ALTERNATIVE_TARGET[python3-config] = "${bindir}/python${PYTHON_BINABI}-config-${MULTILIB_SUFFIX}" | ||
| 66 | |||
| 67 | |||
| 68 | DEPENDS = "bzip2-replacement-native libffi bzip2 openssl sqlite3 zlib virtual/libintl xz virtual/crypt util-linux libtirpc libnsl2" | ||
| 69 | DEPENDS_append_class-target = " python3-native" | ||
| 70 | DEPENDS_append_class-nativesdk = " python3-native" | ||
| 71 | |||
| 72 | EXTRA_OECONF = " --without-ensurepip --enable-shared" | ||
| 73 | EXTRA_OECONF_append_class-native = " --bindir=${bindir}/${PN}" | ||
| 74 | |||
| 75 | export CROSSPYTHONPATH="${STAGING_LIBDIR_NATIVE}/python${PYTHON_MAJMIN}/lib-dynload/" | ||
| 76 | |||
| 77 | EXTRANATIVEPATH += "python3-native" | ||
| 78 | |||
| 79 | CACHED_CONFIGUREVARS = " \ | ||
| 80 | ac_cv_file__dev_ptmx=yes \ | ||
| 81 | ac_cv_file__dev_ptc=no \ | ||
| 82 | ac_cv_working_tzset=yes \ | ||
| 83 | " | ||
| 84 | python() { | ||
| 85 | # PGO currently causes builds to not be reproducible, so disable it for | ||
| 86 | # now. See YOCTO #13407 | ||
| 87 | if bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', True, False, d) and d.getVar('BUILD_REPRODUCIBLE_BINARIES') != '1': | ||
| 88 | d.setVar('PACKAGECONFIG_PGO', 'pgo') | ||
| 89 | else: | ||
| 90 | d.setVar('PACKAGECONFIG_PGO', '') | ||
| 91 | } | ||
| 92 | |||
| 93 | PACKAGECONFIG_class-target ??= "readline ${PACKAGECONFIG_PGO} gdbm" | ||
| 94 | PACKAGECONFIG_class-native ??= "readline gdbm" | ||
| 95 | PACKAGECONFIG_class-nativesdk ??= "readline gdbm" | ||
| 96 | PACKAGECONFIG[readline] = ",,readline" | ||
| 97 | # Use profile guided optimisation by running PyBench inside qemu-user | ||
| 98 | PACKAGECONFIG[pgo] = "--enable-optimizations,,qemu-native" | ||
| 99 | PACKAGECONFIG[tk] = ",,tk" | ||
| 100 | PACKAGECONFIG[gdbm] = ",,gdbm" | ||
| 101 | |||
| 102 | do_configure_prepend () { | ||
| 103 | mkdir -p ${B}/Modules | ||
| 104 | cat > ${B}/Modules/Setup.local << EOF | ||
| 105 | *disabled* | ||
| 106 | ${@bb.utils.contains('PACKAGECONFIG', 'gdbm', '', '_gdbm _dbm', d)} | ||
| 107 | ${@bb.utils.contains('PACKAGECONFIG', 'readline', '', 'readline', d)} | ||
| 108 | EOF | ||
| 109 | } | ||
| 110 | |||
| 111 | CPPFLAGS_append = " -I${STAGING_INCDIR}/ncursesw -I${STAGING_INCDIR}/uuid" | ||
| 112 | |||
| 113 | EXTRA_OEMAKE = '\ | ||
| 114 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | ||
| 115 | STAGING_INCDIR=${STAGING_INCDIR} \ | ||
| 116 | LIB=${baselib} \ | ||
| 117 | ' | ||
| 118 | |||
| 119 | do_compile_prepend_class-target() { | ||
| 120 | if ${@bb.utils.contains('PACKAGECONFIG', 'pgo', 'true', 'false', d)}; then | ||
| 121 | qemu_binary="${@qemu_wrapper_cmdline(d, '${STAGING_DIR_TARGET}', ['${B}', '${STAGING_DIR_TARGET}/${base_libdir}'])}" | ||
| 122 | cat >pgo-wrapper <<EOF | ||
| 123 | #!/bin/sh | ||
| 124 | cd ${B} | ||
| 125 | $qemu_binary "\$@" | ||
| 126 | EOF | ||
| 127 | chmod +x pgo-wrapper | ||
| 128 | fi | ||
| 129 | } | ||
| 130 | |||
| 131 | do_install_prepend() { | ||
| 132 | ${WORKDIR}/check_build_completeness.py ${T}/log.do_compile | ||
| 133 | } | ||
| 134 | |||
| 135 | do_install_append_class-target() { | ||
| 136 | oe_multilib_header python${PYTHON_BINABI}/pyconfig.h | ||
| 137 | } | ||
| 138 | |||
| 139 | do_install_append_class-native() { | ||
| 140 | # Make sure we use /usr/bin/env python | ||
| 141 | for PYTHSCRIPT in `grep -rIl ${bindir}/${PN}/python ${D}${bindir}/${PN}`; do | ||
| 142 | sed -i -e '1s|^#!.*|#!/usr/bin/env python3|' $PYTHSCRIPT | ||
| 143 | done | ||
| 144 | # Add a symlink to the native Python so that scripts can just invoke | ||
| 145 | # "nativepython" and get the right one without needing absolute paths | ||
| 146 | # (these often end up too long for the #! parser in the kernel as the | ||
| 147 | # buffer is 128 bytes long). | ||
| 148 | ln -s python3-native/python3 ${D}${bindir}/nativepython3 | ||
| 149 | } | ||
| 150 | |||
| 151 | do_install_append() { | ||
| 152 | mkdir -p ${D}${libdir}/python-sysconfigdata | ||
| 153 | sysconfigfile=`find ${D} -name _sysconfig*.py` | ||
| 154 | cp $sysconfigfile ${D}${libdir}/python-sysconfigdata/_sysconfigdata.py | ||
| 155 | |||
| 156 | sed -i \ | ||
| 157 | -e "s,^ 'LIBDIR'.*, 'LIBDIR': '${STAGING_LIBDIR}'\,,g" \ | ||
| 158 | -e "s,^ 'INCLUDEDIR'.*, 'INCLUDEDIR': '${STAGING_INCDIR}'\,,g" \ | ||
| 159 | -e "s,^ 'CONFINCLUDEDIR'.*, 'CONFINCLUDEDIR': '${STAGING_INCDIR}'\,,g" \ | ||
| 160 | -e "/^ 'INCLDIRSTOMAKE'/{N; s,/usr/include,${STAGING_INCDIR},g}" \ | ||
| 161 | -e "/^ 'INCLUDEPY'/s,/usr/include,${STAGING_INCDIR},g" \ | ||
| 162 | ${D}${libdir}/python-sysconfigdata/_sysconfigdata.py | ||
| 163 | } | ||
| 164 | |||
| 165 | do_install_append_class-nativesdk () { | ||
| 166 | create_wrapper ${D}${bindir}/python${PYTHON_MAJMIN} OEPYTHON3HOME='${prefix}' TERMINFO_DIRS='${sysconfdir}/terminfo:/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo' PYTHONNOUSERSITE='1' | ||
| 167 | } | ||
| 168 | |||
| 169 | SSTATE_SCAN_FILES += "Makefile _sysconfigdata.py" | ||
| 170 | PACKAGE_PREPROCESS_FUNCS += "py_package_preprocess" | ||
| 171 | |||
| 172 | py_package_preprocess () { | ||
| 173 | # Remove references to buildmachine paths in target Makefile and _sysconfigdata | ||
| 174 | sed -i -e 's:--sysroot=${STAGING_DIR_TARGET}::g' -e s:'--with-libtool-sysroot=${STAGING_DIR_TARGET}'::g \ | ||
| 175 | -e 's|${DEBUG_PREFIX_MAP}||g' \ | ||
| 176 | -e 's:${HOSTTOOLS_DIR}/::g' \ | ||
| 177 | -e 's:${RECIPE_SYSROOT_NATIVE}::g' \ | ||
| 178 | -e 's:${RECIPE_SYSROOT}::g' \ | ||
| 179 | -e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \ | ||
| 180 | ${PKGD}/${prefix}/lib/python${PYTHON_MAJMIN}/config-${PYTHON_MAJMIN}${PYTHON_ABI}*/Makefile \ | ||
| 181 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py \ | ||
| 182 | ${PKGD}/${bindir}/python${PYTHON_BINABI}-config | ||
| 183 | |||
| 184 | # Reformat _sysconfigdata after modifying it so that it remains | ||
| 185 | # reproducible | ||
| 186 | for c in ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py; do | ||
| 187 | python3 ${WORKDIR}/reformat_sysconfig.py $c | ||
| 188 | done | ||
| 189 | |||
| 190 | # Recompile _sysconfigdata after modifying it | ||
| 191 | cd ${PKGD} | ||
| 192 | sysconfigfile=`find . -name _sysconfigdata_*.py` | ||
| 193 | ${STAGING_BINDIR_NATIVE}/python3-native/python3 \ | ||
| 194 | -c "from py_compile import compile; compile('$sysconfigfile')" | ||
| 195 | ${STAGING_BINDIR_NATIVE}/python3-native/python3 \ | ||
| 196 | -c "from py_compile import compile; compile('$sysconfigfile', optimize=1)" | ||
| 197 | ${STAGING_BINDIR_NATIVE}/python3-native/python3 \ | ||
| 198 | -c "from py_compile import compile; compile('$sysconfigfile', optimize=2)" | ||
| 199 | cd - | ||
| 200 | |||
| 201 | mv ${PKGD}/${bindir}/python${PYTHON_BINABI}-config ${PKGD}/${bindir}/python${PYTHON_BINABI}-config-${MULTILIB_SUFFIX} | ||
| 202 | |||
| 203 | #Remove the unneeded copy of target sysconfig data | ||
| 204 | rm -rf ${PKGD}/${libdir}/python-sysconfigdata | ||
| 205 | } | ||
| 206 | |||
| 207 | # We want bytecode precompiled .py files (.pyc's) by default | ||
| 208 | # but the user may set it on their own conf | ||
| 209 | INCLUDE_PYCS ?= "1" | ||
| 210 | |||
| 211 | python(){ | ||
| 212 | import collections, json | ||
| 213 | |||
| 214 | filename = os.path.join(d.getVar('THISDIR'), 'python3', 'python3-manifest.json') | ||
| 215 | # This python changes the datastore based on the contents of a file, so mark | ||
| 216 | # that dependency. | ||
| 217 | bb.parse.mark_dependency(d, filename) | ||
| 218 | |||
| 219 | with open(filename) as manifest_file: | ||
| 220 | manifest_str = manifest_file.read() | ||
| 221 | json_start = manifest_str.find('# EOC') + 6 | ||
| 222 | manifest_file.seek(json_start) | ||
| 223 | manifest_str = manifest_file.read() | ||
| 224 | python_manifest = json.loads(manifest_str, object_pairs_hook=collections.OrderedDict) | ||
| 225 | |||
| 226 | # First set RPROVIDES for -native case | ||
| 227 | # Hardcoded since it cant be python3-native-foo, should be python3-foo-native | ||
| 228 | pn = 'python3' | ||
| 229 | rprovides = d.getVar('RPROVIDES').split() | ||
| 230 | |||
| 231 | for key in python_manifest: | ||
| 232 | pypackage = pn + '-' + key + '-native' | ||
| 233 | if pypackage not in rprovides: | ||
| 234 | rprovides.append(pypackage) | ||
| 235 | |||
| 236 | d.setVar('RPROVIDES_class-native', ' '.join(rprovides)) | ||
| 237 | |||
| 238 | # Then work on the target | ||
| 239 | include_pycs = d.getVar('INCLUDE_PYCS') | ||
| 240 | |||
| 241 | packages = d.getVar('PACKAGES').split() | ||
| 242 | pn = d.getVar('PN') | ||
| 243 | |||
| 244 | newpackages=[] | ||
| 245 | for key in python_manifest: | ||
| 246 | pypackage = pn + '-' + key | ||
| 247 | |||
| 248 | if pypackage not in packages: | ||
| 249 | # We need to prepend, otherwise python-misc gets everything | ||
| 250 | # so we use a new variable | ||
| 251 | newpackages.append(pypackage) | ||
| 252 | |||
| 253 | # "Build" python's manifest FILES, RDEPENDS and SUMMARY | ||
| 254 | d.setVar('FILES_' + pypackage, '') | ||
| 255 | for value in python_manifest[key]['files']: | ||
| 256 | d.appendVar('FILES_' + pypackage, ' ' + value) | ||
| 257 | |||
| 258 | # Add cached files | ||
| 259 | if include_pycs == '1': | ||
| 260 | for value in python_manifest[key]['cached']: | ||
| 261 | d.appendVar('FILES_' + pypackage, ' ' + value) | ||
| 262 | |||
| 263 | for value in python_manifest[key]['rdepends']: | ||
| 264 | # Make it work with or without $PN | ||
| 265 | if '${PN}' in value: | ||
| 266 | value=value.split('-', 1)[1] | ||
| 267 | d.appendVar('RDEPENDS_' + pypackage, ' ' + pn + '-' + value) | ||
| 268 | |||
| 269 | for value in python_manifest[key].get('rrecommends', ()): | ||
| 270 | if '${PN}' in value: | ||
| 271 | value=value.split('-', 1)[1] | ||
| 272 | d.appendVar('RRECOMMENDS_' + pypackage, ' ' + pn + '-' + value) | ||
| 273 | |||
| 274 | d.setVar('SUMMARY_' + pypackage, python_manifest[key]['summary']) | ||
| 275 | |||
| 276 | # Prepending so to avoid python-misc getting everything | ||
| 277 | packages = newpackages + packages | ||
| 278 | d.setVar('PACKAGES', ' '.join(packages)) | ||
| 279 | d.setVar('ALLOW_EMPTY_${PN}-modules', '1') | ||
| 280 | } | ||
| 281 | |||
| 282 | # Files needed to create a new manifest | ||
| 283 | |||
| 284 | do_create_manifest() { | ||
| 285 | # This task should be run with every new release of Python. | ||
| 286 | # We must ensure that PACKAGECONFIG enables everything when creating | ||
| 287 | # a new manifest, this is to base our new manifest on a complete | ||
| 288 | # native python build, containing all dependencies, otherwise the task | ||
| 289 | # wont be able to find the required files. | ||
| 290 | # e.g. BerkeleyDB is an optional build dependency so it may or may not | ||
| 291 | # be present, we must ensure it is. | ||
| 292 | |||
| 293 | cd ${WORKDIR} | ||
| 294 | # This needs to be executed by python-native and NOT by HOST's python | ||
| 295 | nativepython3 create_manifest3.py ${PYTHON_MAJMIN} | ||
| 296 | cp python3-manifest.json.new ${THISDIR}/python3/python3-manifest.json | ||
| 297 | } | ||
| 298 | |||
| 299 | # bitbake python -c create_manifest | ||
| 300 | addtask do_create_manifest | ||
| 301 | |||
| 302 | # Make sure we have native python ready when we create a new manifest | ||
| 303 | do_create_manifest[depends] += "${PN}:do_prepare_recipe_sysroot" | ||
| 304 | do_create_manifest[depends] += "${PN}:do_patch" | ||
| 305 | |||
| 306 | # manual dependency additions | ||
| 307 | RRECOMMENDS_${PN}-core_append_class-nativesdk = " nativesdk-python3-modules" | ||
| 308 | RRECOMMENDS_${PN}-crypt_append_class-target = " openssl ca-certificates" | ||
| 309 | RRECOMMENDS_${PN}-crypt_append_class-nativesdk = " openssl ca-certificates" | ||
| 310 | |||
| 311 | # For historical reasons PN is empty and provided by python3-modules | ||
| 312 | FILES_${PN} = "" | ||
| 313 | RPROVIDES_${PN}-modules = "${PN}" | ||
| 314 | |||
| 315 | FILES_${PN}-pydoc += "${bindir}/pydoc${PYTHON_MAJMIN} ${bindir}/pydoc3" | ||
| 316 | FILES_${PN}-idle += "${bindir}/idle3 ${bindir}/idle${PYTHON_MAJMIN}" | ||
| 317 | |||
| 318 | # provide python-pyvenv from python3-venv | ||
| 319 | RPROVIDES_${PN}-venv += "python3-pyvenv" | ||
| 320 | |||
| 321 | # package libpython3 | ||
| 322 | PACKAGES =+ "libpython3 libpython3-staticdev" | ||
| 323 | FILES_libpython3 = "${libdir}/libpython*.so.*" | ||
| 324 | FILES_libpython3-staticdev += "${prefix}/lib/python${PYTHON_MAJMIN}/config-${PYTHON_BINABI}-*/libpython${PYTHON_BINABI}.a" | ||
| 325 | INSANE_SKIP_${PN}-dev += "dev-elf" | ||
| 326 | |||
| 327 | # catch all the rest (unsorted) | ||
| 328 | PACKAGES += "${PN}-misc" | ||
| 329 | RDEPENDS_${PN}-misc += "python3-core python3-email python3-codecs python3-pydoc python3-pickle" | ||
| 330 | RDEPENDS_${PN}-modules_append_class-target = " python3-misc" | ||
| 331 | RDEPENDS_${PN}-modules_append_class-nativesdk = " python3-misc" | ||
| 332 | FILES_${PN}-misc = "${libdir}/python${PYTHON_MAJMIN} ${libdir}/python${PYTHON_MAJMIN}/lib-dynload" | ||
| 333 | |||
| 334 | # catch manpage | ||
| 335 | PACKAGES += "${PN}-man" | ||
| 336 | FILES_${PN}-man = "${datadir}/man" | ||
| 337 | |||
| 338 | RDEPENDS_${PN}-ptest = "${PN}-modules ${PN}-tests unzip bzip2 libgcc tzdata-europe coreutils sed" | ||
| 339 | RDEPENDS_${PN}-ptest_append_libc-glibc = " locale-base-tr-tr.iso-8859-9" | ||
| 340 | RDEPENDS_${PN}-tkinter += "${@bb.utils.contains('PACKAGECONFIG', 'tk', 'tk tk-lib', '', d)}" | ||
| 341 | RDEPENDS_${PN}-dev = "" | ||
| 342 | |||
