[oe-commits] [openembedded-core] branch master updated (be20eb4 -> 596f760)

git at git.openembedded.org git at git.openembedded.org
Wed Aug 8 09:52:26 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 be20eb4  selftest/package: Fix hardlink test when using sstate
     new df6a876  npth:1.5 -> 1.6
     new f663458  createrepo-c:0.10.0 -> 0.11.0
     new 34f9391  vala:0.40.4 -> 0.40.8
     new 8be6cfb  icu:61.1 -> 62.1
     new 3874c38  devicetree.bbclass: User/BSP device tree source compilation class
     new 776d14d  systemd: Detect if statx struct is defined in sys/stat.h
     new acca7f9  m4: Workaround gnulib's fseeko.c implementation
     new 790cbe4  findutils: Fix build with glibc 2.28
     new f1dc6b5  bootchart2: Update to master-tip
     new 2245003  gzip: Fix build with glibc 2.28
     new 741415c  bison: Fix build break with glibc 2.28
     new 2a37692  strace: Fix build with glibc 2.28
     new 1c27992  blktool: Fix build with glibc 2.28
     new 990a9c9  file: Update to 5.34
     new fae23c7  classes/reproducible_build: Avoid dereferencing symlinks
     new b180fbd  oe_syslog.py: fix for syslog-ng
     new ae41e1f  bash: add -fomit-frame-pointer to DEBUG_OPTIMIZATION for armv[45] with thumb enabled
     new 70af5f2  libjpeg-turbo: add -fomit-frame-pointer to DEBUG_OPTIMIZATION for armv[45] with thumb enabled
     new 719b0e8  context.py: Do not mask exceptions needlessly.
     new 2f44b9b  classes/sanity: Clean up getstatusoutput usage
     new 3f3899e  libidn2: Fix charset.alias issue with musl
     new 4c5bd69  openssl_1.0: drop unnecessary dependency on makedepend-native
     new 596f760  sstate: Add sstate usage summary to the build

The 23 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 meta/classes/devicetree.bbclass                    | 140 +++++++++++++++
 meta/classes/reproducible_build.bbclass            |   4 +-
 meta/classes/sanity.bbclass                        |  67 ++++----
 meta/classes/sstate.bbclass                        |  12 ++
 meta/lib/oeqa/runtime/cases/oe_syslog.py           |   8 +-
 meta/lib/oeqa/runtime/context.py                   |  14 +-
 .../recipes-connectivity/openssl/openssl_1.0.2o.bb |   2 +-
 ...etect-whether-struct-statx-is-defined-in-.patch | 109 ++++++++++++
 meta/recipes-core/systemd/systemd_239.bb           |   1 +
 meta/recipes-devtools/bison/bison/gnulib.patch     |  21 +++
 meta/recipes-devtools/bison/bison_3.0.4.bb         |   1 +
 ...ed-Missing-default-value-for-BOOTLOG_DEST.patch |  30 ----
 .../bootchart2/bootchart2_0.14.8.bb                |   4 +-
 .../createrepo-c/createrepo-c_git.bb               |   4 +-
 .../file/file/CVE-2018-10360.patch                 |  32 ----
 .../file/file/fix-bogus-magic.patch                |  32 ----
 .../file/{file_5.33.bb => file_5.34.bb}            |   4 +-
 meta/recipes-devtools/m4/m4-1.4.18.inc             |   1 +
 .../m4/m4/m4-1.4.18-glibc-change-work-around.patch | 129 ++++++++++++++
 .../0001-tests-fix-build-with-fresh-glibc.patch    |  42 +++++
 meta/recipes-devtools/strace/strace_4.23.bb        |   1 +
 .../vala/{vala_0.40.4.bb => vala_0.40.8.bb}        |   4 +-
 meta/recipes-extended/bash/bash_4.4.18.bb          |   3 +
 .../blktool/blktool/blktool-gnulib-makedev.patch   |  23 +++
 meta/recipes-extended/blktool/blktool_4-7.bb       |   1 +
 .../findutils/findutils-4.6.0-gnulib-fflush.patch  | 140 +++++++++++++++
 .../findutils/findutils-4.6.0-gnulib-makedev.patch |  78 +++++++++
 meta/recipes-extended/findutils/findutils_4.6.0.bb |   2 +
 meta/recipes-extended/gzip/gzip-1.9/gnulib.patch   | 189 +++++++++++++++++++++
 meta/recipes-extended/gzip/gzip_1.9.bb             |   4 +-
 ...eed_charset_alias-when-building-for-musl.patch} |  17 +-
 meta/recipes-extended/libidn/libidn2_2.0.5.bb      |   4 +-
 meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.3.bb  |   3 +
 .../icu/icu/0001-i18n-Drop-include-xlocale.h.patch |  34 ----
 .../icu/{icu_61.1.bb => icu_62.1.bb}               |   5 +-
 .../npth/{npth_1.5.bb => npth_1.6.bb}              |   4 +-
 36 files changed, 968 insertions(+), 201 deletions(-)
 create mode 100644 meta/classes/devicetree.bbclass
 create mode 100644 meta/recipes-core/systemd/systemd/0022-build-sys-Detect-whether-struct-statx-is-defined-in-.patch
 create mode 100644 meta/recipes-devtools/bison/bison/gnulib.patch
 delete mode 100644 meta/recipes-devtools/bootchart2/bootchart2/0001-Fixed-Missing-default-value-for-BOOTLOG_DEST.patch
 delete mode 100644 meta/recipes-devtools/file/file/CVE-2018-10360.patch
 delete mode 100644 meta/recipes-devtools/file/file/fix-bogus-magic.patch
 rename meta/recipes-devtools/file/{file_5.33.bb => file_5.34.bb} (91%)
 create mode 100644 meta/recipes-devtools/m4/m4/m4-1.4.18-glibc-change-work-around.patch
 create mode 100644 meta/recipes-devtools/strace/strace/0001-tests-fix-build-with-fresh-glibc.patch
 rename meta/recipes-devtools/vala/{vala_0.40.4.bb => vala_0.40.8.bb} (64%)
 create mode 100644 meta/recipes-extended/blktool/blktool/blktool-gnulib-makedev.patch
 create mode 100644 meta/recipes-extended/findutils/findutils/findutils-4.6.0-gnulib-fflush.patch
 create mode 100644 meta/recipes-extended/findutils/findutils/findutils-4.6.0-gnulib-makedev.patch
 create mode 100644 meta/recipes-extended/gzip/gzip-1.9/gnulib.patch
 copy meta/recipes-extended/{cpio/cpio-2.12/0001-Unset-need_charset_alias-when-building-for-musl.patch => libidn/libidn2/Unset-need_charset_alias-when-building-for-musl.patch} (58%)
 delete mode 100644 meta/recipes-support/icu/icu/0001-i18n-Drop-include-xlocale.h.patch
 rename meta/recipes-support/icu/{icu_61.1.bb => icu_62.1.bb} (80%)
 rename meta/recipes-support/npth/{npth_1.5.bb => npth_1.6.bb} (81%)

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


More information about the Openembedded-commits mailing list