[oe-commits] [openembedded-core] branch master updated (b7f3f7e -> 6f6b384)

git at git.openembedded.org git at git.openembedded.org
Thu Sep 13 06:42:52 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a change to branch master
in repository openembedded-core.

    from b7f3f7e  yasm: remove
     add a227892  testimage.bbclass: fix qemu_use_kvm handling
     add a31047b  python3: fix ftplib with TLS 1.3
     add 47a8602  python3: remove redundant patch
     add 9806e14  python3: remove patch that inadvertently disables xattrs
     add df1874e  python3: fix multiprocessing
     add fc5a5af  oe/utils.py: Add vartrue()
     add 5db09f7  bitbake.conf: Make BUILD_OPTIMIZATION respect to DEBUG_BUILD
     add 678fe8c  devicetree.bbclass: don't pad DT overlays
     add 65cded5  kernel.bbclass: do not deploy fitImage; kernel-fitimage.bbclass does that.
     add a23c482  allarch: only enable allarch when multilib is not used
     add 6d3ca47  sstate.bbclass: update SSTATE_DUPWHITELIST
     add 53d8625  update_font_cache: update script for multilib
     add cad28bd  update_gtk_immodules_cache: update for multilib
     add 32fe47e  statetests.py: drop test_sstate_allarch_samesigs_multilib
     add 3197c08  target-sdk-provides-dummy: skip package_qa_multilib check
     add 52f2dd9  multilib: fix install file conflicts
     add 2585f42  eudev: set configure option --with-rootlibexecdir
     add 3e222bf  socat: Cache shift value for CRDLY, TABDLY and CSIZE
     add 51638ed  wic: Introduce the --use-label partition parameter
     add cbc0262  ltp: fix mmap15 failed on qemumips64
     add e38ff96  python3{,native}: update to 3.5.6
     add 6c12346  python3{,-native}: backport openssl 1.1.1 compatibility changes
     add fc47671  python3: split common assignments into a dedicated python3.inc
     add 983206d  python3: remove redundant assignments
     add 12626b2  python: we use system ffi so no need to autoreconf in-tree libffi
     add fd5b497  python3: add PACKAGECONFIG for bluetooth
     add 6f6b384  python3: don't hard-code version in python-config

No new revisions were added by this update.

Summary of changes:
 meta/classes/allarch.bbclass                       |  13 +-
 meta/classes/devicetree.bbclass                    |   7 +-
 meta/classes/icecc.bbclass                         |   2 +-
 meta/classes/kernel.bbclass                        |  18 +-
 meta/classes/multilib.bbclass                      |   7 +-
 meta/classes/multilib_global.bbclass               |   4 +-
 meta/classes/package.bbclass                       |   9 +-
 meta/classes/populate_sdk_base.bbclass             |   3 +-
 meta/classes/sstate.bbclass                        |   4 +-
 meta/classes/testimage.bbclass                     |   4 +-
 meta/conf/bitbake.conf                             |   4 +-
 meta/lib/oe/utils.py                               |   8 +
 meta/lib/oeqa/selftest/cases/sstatetests.py        |  11 +-
 meta/recipes-connectivity/socat/socat_1.7.3.2.bb   |  17 +-
 meta/recipes-core/udev/eudev_3.2.5.bb              |   3 +-
 ...on3-native_3.5.5.bb => python3-native_3.5.6.bb} |  24 +-
 meta/recipes-devtools/python/python3.inc           |  43 ++++
 ...-SSLContext-has-improved-default-settings.patch | 272 +++++++++++++++++++++
 .../python3/0001-cross-compile-support.patch       |  96 --------
 ...dd-TLS-1.3-cipher-suites-and-OP_NO_TLSv1_.patch | 234 ++++++++++++++++++
 ...ixes-for-TLS-1.3-and-OpenSSL-1.1.1-GH-876.patch | 173 +++++++++++++
 ...TLS-1.3-ciphers-for-OpenSSL-1.1.1-GH-6976.patch | 110 +++++++++
 ...0714-ALPN-changes-for-OpenSSL-1.1.0f-2305.patch |  68 ++++++
 meta/recipes-devtools/python/python3/ftplib.patch  |  57 +++++
 .../python/python3/shutil-follow-symlink-fix.patch |  17 --
 meta/recipes-devtools/python/python3/signal.patch  |  56 +++++
 .../python/{python3_3.5.5.bb => python3_3.5.6.bb}  |  35 +--
 .../ltp/ltp/0001-mmap15-mips64-return-EINVAL.patch |  41 ++++
 meta/recipes-extended/ltp/ltp_20180515.bb          |   1 +
 meta/recipes-gnome/gtk+/gtk+.inc                   |   4 +
 meta/recipes-gnome/gtk+/gtk+3.inc                  |   4 +
 meta/recipes-graphics/cairo/cairo_1.14.12.bb       |   6 +-
 .../fontconfig/fontconfig_2.12.6.bb                |   8 +-
 meta/recipes-support/icu/icu.inc                   |   4 +-
 .../libgpg-error/libgpg-error_1.32.bb              |   5 +-
 scripts/lib/wic/help.py                            |  18 +-
 scripts/lib/wic/ksparser.py                        |  14 +-
 scripts/lib/wic/partition.py                       |   1 +
 scripts/lib/wic/plugins/imager/direct.py           |   2 +
 scripts/postinst-intercepts/update_font_cache      |   2 +-
 .../postinst-intercepts/update_gtk_immodules_cache |   8 +-
 41 files changed, 1209 insertions(+), 208 deletions(-)
 rename meta/recipes-devtools/python/{python3-native_3.5.5.bb => python3-native_3.5.6.bb} (84%)
 create mode 100644 meta/recipes-devtools/python/python3.inc
 create mode 100644 meta/recipes-devtools/python/python3/0001-Issue-28043-SSLContext-has-improved-default-settings.patch
 delete mode 100644 meta/recipes-devtools/python/python3/0001-cross-compile-support.patch
 create mode 100644 meta/recipes-devtools/python/python3/0002-bpo-29136-Add-TLS-1.3-cipher-suites-and-OP_NO_TLSv1_.patch
 create mode 100644 meta/recipes-devtools/python/python3/0003-bpo-32947-Fixes-for-TLS-1.3-and-OpenSSL-1.1.1-GH-876.patch
 create mode 100644 meta/recipes-devtools/python/python3/0004-bpo-33570-TLS-1.3-ciphers-for-OpenSSL-1.1.1-GH-6976.patch
 create mode 100644 meta/recipes-devtools/python/python3/0005-bpo-30714-ALPN-changes-for-OpenSSL-1.1.0f-2305.patch
 create mode 100644 meta/recipes-devtools/python/python3/ftplib.patch
 delete mode 100644 meta/recipes-devtools/python/python3/shutil-follow-symlink-fix.patch
 create mode 100644 meta/recipes-devtools/python/python3/signal.patch
 rename meta/recipes-devtools/python/{python3_3.5.5.bb => python3_3.5.6.bb} (92%)
 create mode 100644 meta/recipes-extended/ltp/ltp/0001-mmap15-mips64-return-EINVAL.patch

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list