aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support
AgeCommit message (Collapse)Author
2022-01-05udisks2: upgrade 2.9.3 -> 2.9.4Andreas Müller
From announcement: This release was focused on stability and hardening, notably fixing some long-standing race conditions and memory leaks. Default mount options got tweaked towards data safety. All users are strongly advised to upgrade. Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 2b2666b7fab2818e75701b82c15d6a1628659259) [Minor fixup for honister context, bug fix only] Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-12-08pcsc-lite: set precise BSD licenseRoss Burton
"BSD" is ambiguous, use the precise license BSD-3-Clause. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 2755ba786a1d8e54b065320b7a35bfe8f31ef847) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-12-08sg3-utils: set precise BSD licenseRoss Burton
"BSD" is ambiguous, use the precise license BSD-2-Clause. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 3e5651b6b4027ffa768492ed4083c4220b4e59e6) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-12-08lvm2: do not install systemd units/initscripts when building native SDK toolsLuca Boccassi
Nothing picks them up, so the build fails. Required to be able to build native tools like systemd-analyze. Signed-off-by: Luca Boccassi <luca.boccassi@microsoft.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit defbcad66fc1e91117ba08bf1051035188e40b37) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-11-10recipes: remove tabs and spaces in SRC_URIArmin Kuster
Missed tabs and spaces in the SRC_URI during 'Update SRC_URI branch and protocols' translation. [V2] Fix typo in imagemagick, change "gitk" to "git" [v3] Give a typo, fix a typo [V4] Give a commit summary (it was there in v2), but now there is only: Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-11-06recipes: Update SRC_URI branch and protocolsArmin Kuster
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. I tried backporting Richard's master change but there where many merge conflicts. I went the lazy route and ran the script. This is work based on "b402a3076 recipes: Update SRC_URI branch and protocols" Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-11-06libssh: use https instead of git in SRC_URIYi Zhao
Set protocol to https as the git protocol doesn't work for this repo: $ git clone git://git.libssh.org/projects/libssh.git Cloning into 'libssh'... fatal: unable to connect to git.libssh.org: git.libssh.org[0: 78.46.21.5]: errno=Connection timed out git.libssh.org[1: 2a01:4f8:201:2294::2]: errno=Network is unreachable Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 2f9851fffbc0a8ba10f9c9d7e4e5d5cee7825697) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-10-23span-lite: upgrade 0.10.1 -> 0.10.3wangmy
Fixes: Properly constrain constructor from iterators (https://github.com/martinmoene/span-lite/issues/69) Add [noreturn] to throw_out_of_range() (https://github.com/martinmoene/span-lite/issues/73) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit d46c811305ec13554d0ec0ddc973af2f4b33d7e7) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-10-08bdwgc: upgrade 8.0.4 -> 8.0.6Ivan Maidanski
Highlights of this upgrade: * Fix 'undefined reference to __data_start' linker error on risc-v * Fix data race in generic_malloc_many * Fix handling of areas smaller than page size in GC_scratch_recycle * Fix misaligned tlfs passed to AO_load on m68k * Fix overflow of scratch_free_ptr value * Limit number of unmapped regions (to avoid exceeding of vm.max_map_count) See the following for detailed changes: * https://github.com/ivmai/bdwgc/releases/tag/v8.0.6 The LIC_FILES_CHKSUM has changed because of update of copyright year (in README.QUICK). Signed-off-by: Ivan Maidanski <ivmai@mail.ru> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 6e5cbf871188c5bf6ea5c708203553530b986ee4) Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-10-07libiio: depend on avahi only when network backed is usedNandor Han
The `avahi` dependency is needed only when network backend is used. The current dependency configuration will add the `avahi` dependency regardless if network backend is used or not. Move the `avahi` dependency to be part of `PACKAGECONFIG` configuration which will insert the dependency only when needed. Signed-off-by: Nandor Han <nandor.han@vaisala.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-09-30cmark: upgrade 0.30.1 -> 0.30.2zhengruoqin
Fix parsing of emphasis before links (#424, Nick Wellnhofer). Fixes a regression introduced with commit ed0a4bf. Update to Unicode 14.0 (data-man). Add ~ to safe href character set (#394, frogtile). Update CMakeLists.txt (Saleem Abdulrasool). Bump the minimum required CMake to 3.7. Imperatively define output name for static library. Fix install paths in libcmark.pc (Sebastián Mancilla). CMAKE_INSTALL_<dir> can be relative or absolute path, so it is wrong to prefix CMAKE_INSTALL_PREFIX because if CMAKE_INSTALL_<dir> is set to an absolute path it will result in a malformed path with two absolute paths joined together. Instead, use CMAKE_INSTALL_FULL_<dir> from GNUInstallDirs. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-29libeigen: backport fix for -Werror=class-memaccess issues when NEON is enabledMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-29opencv: fix build with protobuf-3.18 when dnn PACKAGECONFIG is enabledMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-27smarty: Add recipezangrc
Smarty is a template engine for PHP, facilitating the separation of presentation (HTML/CSS) from application logic. Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-27sassc: upgrade 3.6.1 -> 3.6.2wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-27libsass: upgrade 3.6.4 -> 3.6.5wangmy
Changelog Fix extend edge case going endlessly (@mgreter #3081) Fix source-maps and how we count unicode characters (@mgreter #3096) Fix seed generator if std::random_device fails (@benbucksch #3151) Fix url() containing exclamation mark causing an error (#2880) Fix Offset initialization when end was not given (@ihsinme #3131) Fix obvious backporting error in pseudo extend (@mgreter #3136) Fix obvious identical subexpressions in op_color_number (@ariccio #3148) Fix edge case regarding unit-less number equality as object keys (@mgreter #3095) Revert compound re-ordering for non extended selectors (@mgreter #3100) Prevent compiler warning about unnecessary copy (@acocuzzo #3129) Replace Travis CI with GitHub Actions (@mgreter #3150) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-27libjs-jquery-icheck: Add recipezangrc
Highly customizable checkboxes and radio buttons (jQuery & Zepto). Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24vboxguestdrivers: fix build against 5.14+Bruce Ashfield
The bump of the reference / default kernels and libc-headers to 5.14 in oe-core broke the build of the vbox guest drivers. The upstream SVN already has 5.14 fixes for the issues, so these are SVN exports of the changes. When a new release is available, we can drop the changes. Also in this patch, is a fixup for the source directory for patching. It was broken in the overrides conversion, and since there weren't any active patches at the time, we didn't notice that source wasn't set to a directory where quilt could actually find the files. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24span-lite: upgrade 0.10.0 -> 0.10.1zhengruoqin
Release 0.10.1 fixes https://github.com/martinmoene/span-lite/issues/71. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24mscgen: Inherit pkgconfigKhem Raj
Fixes ../mscgen-0.20/configure: line 5586: PKG_PROG_PKG_CONFIG: command not found Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24remmina: Inherit pkgconfigKhem Raj
Fixes Could NOT find GTK3 (missing: Cairo_FOUND) (Required is at least version "3.14.0") Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24avro-c: Inherit pkgconfigKhem Raj
Fixes -- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24zchunk: Inherit pkgconfigKhem Raj
Fixes ../git/meson.build:32:0: ERROR: Pkg-config binary for machine MachineChoice.HOST not found. Giving up. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24libbytesize: Inherit pkgconfigKhem Raj
Fixes ../git/configure: line 13851: `PKG_CHECK_MODULES(PCRE2, libpcre2-8, , LIBBYTESIZE_SOFT_FAILURE($[PCRE2]_PKG_ERRORS))' Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24portaudio-v19: Inherit pkgconfigKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24libgnt: Inherit pkgconfigKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24emacs: Inherit pkgconfigKhem Raj
It was part of default dependencies before Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24gd: upgrade 2.3.2 -> 2.3.3Sakib Sajal
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24dstat: Add missing python-six runtime dependencyMarek Vasut
The tool depends on the six module, add it, otherwise the following traceback happens when running it on the target: Traceback (most recent call last): File "/usr/bin/dstat", line 32, in <module> import six ModuleNotFoundError: No module named 'six' Signed-off-by: Marek Vasut <marex@denx.de> Cc: Khem Raj <raj.khem@gmail.com> Cc: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24poco: update to 1.11.0Pascal Bach
Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-24libiio: Make libiio-python3 depend on python3-corePeter Kjellerstedt
Inheriting setuptools3 incorrectly adds the dependency on python3-core to libiio instead of to libiio-python3 where it belongs. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-14zchunk: upgrade 1.1.9 -> 1.1.16zhengruoqin
-License-Update: Copyright year updated to 2021. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-09libeigen: upgrade 3.3.9 -> 3.4.0zhengruoqin
-License-Update: Delete empty lines. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-09libbytesize: upgrade 2.4 -> 2.6zhengruoqin
Libbytesize 2.6 --------------- Hela Basa (1): - Added translation using Weblate (Sinhala) Ricky Tigg (1): - Translated using Weblate (Finnish) Vojtech Trefny (3): - Sync spec with downstream - Squashed 'translation-canary/' changes from fccbb1b..4d4e65b - Make sure Size can be interpreted as integer in Python 3.10 Weblate (1): - Update translation files simmon (2): - Added translation using Weblate (Korean) - Translated using Weblate (Korean) Libbytesize 2.5 --------------- Adolfo Jayme Barrientos (2): - Translated using Weblate (Spanish) - Translated using Weblate (Asturian) Ricky Tigg (1): - Translated using Weblate (Finnish) Vojtech Trefny (6): - Sync spec with downstream - travis: Add --nogpgcheck when using dnf on Fedora - bscalc: Add option to print only single "human readable" result - tests: Run pylint and pycodestyle on bscalc - travis: Print logs after failed tests - tools: Read input from stdin when not running in a tty Weblate (1): - Update translation files Yaron Shahrabani (2): - Added translation using Weblate (Hebrew) - Translated using Weblate (Hebrew) gururajrkatti (1): - Add support to ppc64le for debian build Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-08spdlog: update 1.8.2 -> 1.9.2Alexander Kanavin
Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-08fmt: update 7.1.3 -> 8.0.1Alexander Kanavin
Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-08poppler: upgrade 21.08.0 -> 21.09.0zhengruoqin
refresh 0001-Do-not-overwrite-all-our-build-flags.patch Release 21.09.0: core: * Splash: Massive speed improvement on files that use lots of save/restore (q/Q) operators * Correct decoding of signature properties Reason & Location when they are Unicode * Fix issues with malformed files * MSVC build fixes build system: * Call cmake_minium_required() before project() * Always append to CMAKE_{C,CXX}_FLAGS_${CMAKE_BUILD_TYPE} * correctly forward user-provided flags to try_compile() Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-08poppler-data: upgrade 0.4.10 -> 0.4.11wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-08dfu-util: upgrade 0.10 -> 0.11wangmy
o Fix suffix check regression on Windows with Large File Support o Skip setting alternate interface when not needed o Only clamp transfer size on Linux o Quirk for GD32 leave request o Improve status and error messages and exit codes o dfuse: Process all alternate interfaces in a DfuSe file o dfuse-pack.py: Fix alternate settings if first is 0 2021-09-05 Tormod Volden <debian.tormod@gmail.com> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-07gsl: upgrade 2.6 -> 2.7zangrc
* What is new in gsl-2.7: ** fixed doc bug for gsl_histogram_min_bin (lhcsky at 163.com) ** fixed bug #60335 (spmatrix test failure, J. Lamb) ** fixed bug #36577 ** clarified documentation on interpolation accelerators (V. Krishnan) ** fixed bug #45521 (erroneous GSL_ERROR_NULL in ode-initval2, thanks to M. Sitte) ** fixed doc bug #59758 ** fixed bug #58202 (rstat median for n=5) ** added support for native C complex number types in gsl_complex when using a C11 compiler ** upgraded to autoconf 2.71, automake 1.16.3, libtool 2.4.6 ** updated exponential fitting example for nonlinear least squares ** added banded LU decomposition and solver (gsl_linalg_LU_band) Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-07avro-c: upgrade 1.9.2 -> 1.10.2zhengruoqin
0001-cmake-Use-GNUInstallDirs-instead-of-hard-coded-paths.patch Removed since this is included in 1.10.2 Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-05uhubctl: upgrade 2.3.0 -> 2.4.0zhengruoqin
Support for toggle action (turn power on or off opposite to current power state) b99a080. More sane error reporting when we enumerate devices which lack permissions 9b5efa0. Allow pkg-config override to make some build systems (e.g. chromium OS) happier 92736a8. Even more supported devices. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-05monit: upgrade 5.28.1 -> 5.29.0wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-30hidapi: add rdep on glibc-gconv-utf-16Justin Bronder
libhidapi-libusb needs to convert from UTF-16LE to WCHAR_T in order to read various libusb string descriptors. Signed-off-by: Justin Bronder <jsbronder@cold-front.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-26xmlsec1: upgrade 1.2.31 -> 1.2.32zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-26poppler: Explicitly enable/disable boost together with splashPeter Kjellerstedt
This avoids the following error when splash is not enabled in PACKAGECONFIG: -- Could NOT find Boost (missing: Boost_INCLUDE_DIR) (Required is at least version "1.58.0") CMake Error at CMakeLists.txt:196 (message): -- Boost recommended for Splash. Use ENABLE_BOOST=OFF to skip. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-26gd: fix CVE-2021-38115Sakib Sajal
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-23c-ares: remove custom patchesSinan Kaya
Current patch is breaking the library dependencies added by cmake especially when you are static linking. Applications need the ws2_32 library to be linked for mingw32 and with the existing patch this is not getting passed to the users. Current patch seems to address this issue: https://github.com/c-ares/c-ares/issues/373 Both issues are resolved in 1.17.2: 1.17.2-r0/git $ find . | grep c-ares-config.cmake.in ./c-ares-config.cmake.in 1.17.2-r0/git $ find . | grep libcares.pc.cmake ./libcares.pc.cmake Signed-off-by: Sinan Kaya <okaya@kernel.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-23opensc: upgrade 0.21.0 -> 0.22.0wangmy
Use standard paths for file cache on Linux and OSX Various issues of memory/buffer handling in legacy drivers mostly reported by oss-fuzz and coverity (tcos, oberthur, isoapplet, iasecc, westcos, gpk, flex, dnie, mcrd, authentic, belpic) Add threading test to pkcs11-tool Add support to generate generic secret keys opensc-explorer: Print information about LCS (Life cycle status byte) Add support for Apple's arm64 (M1) binaries, removed TokenD. A seperate installer with TokenD (and without arm64 binaries) will be available. Support for gcc11 and its new strict aliasing rules Initial support for building with OpenSSL 3.0 pkcs15-tool: Write data objects in binary mode Avoid limited size of log messages Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-20c-ares: upgrade 1.17.1 -> 1.17.2wangmy
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>