diff options
| author | Tim Orling <ticotimo@gmail.com> | 2022-02-24 12:21:29 -0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-03-01 09:13:42 -0800 |
| commit | d6dcffc75445fafa93ed4e55f549b149fc9161eb (patch) | |
| tree | bf7d35aa2434f27d7699f076073ab672a6a3d01d /meta-python/classes/distutils-common-base.bbclass | |
| parent | 9c0cbd1d8f2f4d7370dfd2be747efd5014f539fa (diff) | |
| download | meta-openembedded-d6dcffc75445fafa93ed4e55f549b149fc9161eb.tar.gz | |
distutils*.bbclass: move from oe-core
distutils has been deprecated in Python 3.10 and will be removed in
Python 3.12 (predicted release date October 2023). For now, move these
classes from oe-core to allow users to migrate.
A deprecation warning has been added to each class.
Documentation is also being dropped in oe-core, but users can refer to
3.4 documentation for the legacy variables and classes.
[YOCTO #14610]
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/classes/distutils-common-base.bbclass')
| -rw-r--r-- | meta-python/classes/distutils-common-base.bbclass | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-python/classes/distutils-common-base.bbclass b/meta-python/classes/distutils-common-base.bbclass new file mode 100644 index 0000000000..59c750a3cf --- /dev/null +++ b/meta-python/classes/distutils-common-base.bbclass | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | export STAGING_INCDIR | ||
| 2 | export STAGING_LIBDIR | ||
| 3 | |||
| 4 | # LDSHARED is the ld *command* used to create shared library | ||
| 5 | export LDSHARED = "${CCLD} -shared" | ||
| 6 | # LDXXSHARED is the ld *command* used to create shared library of C++ | ||
| 7 | # objects | ||
| 8 | export LDCXXSHARED = "${CXX} -shared" | ||
| 9 | # CCSHARED are the C *flags* used to create objects to go into a shared | ||
| 10 | # library (module) | ||
| 11 | export CCSHARED = "-fPIC -DPIC" | ||
| 12 | # LINKFORSHARED are the flags passed to the $(CC) command that links | ||
| 13 | # the python executable | ||
| 14 | export LINKFORSHARED = "${SECURITY_CFLAGS} -Xlinker -export-dynamic" | ||
| 15 | |||
| 16 | FILES:${PN} += "${libdir}/* ${libdir}/${PYTHON_DIR}/*" | ||
| 17 | |||
| 18 | FILES:${PN}-staticdev += "\ | ||
| 19 | ${PYTHON_SITEPACKAGES_DIR}/*.a \ | ||
| 20 | " | ||
| 21 | FILES:${PN}-dev += "\ | ||
| 22 | ${datadir}/pkgconfig \ | ||
| 23 | ${libdir}/pkgconfig \ | ||
| 24 | ${PYTHON_SITEPACKAGES_DIR}/*.la \ | ||
| 25 | " | ||
| 26 | python __anonymous() { | ||
| 27 | bb.warn("distutils-common-base.bbclass is deprecated, please use setuptools3-base.bbclass instead") | ||
| 28 | } | ||
