summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* python3-absl: upgrade 0.15.0 -> 1.0.0wangmy2021-11-171-1/+1
| | | | | | | | | | | | Changed absl-py no longer supports Python 2.7, 3.4, 3.5. All versions have reached end-of-life for more than a year now. New releases will be tagged as vX.Y.Z instead of pypi-vX.Y.Z in the git repo going forward. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* packagegroup-meta-python.bb: Add new packagesLeon Anavi2021-11-171-0/+4
| | | | | | | | | | | | | Add new packages: - python3-aiosignal - python3-frozenlist - python3-charset-normalizer - python3-cchardet Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* php: use qemu wrapper to build miniluaClaude Bing2021-11-163-23/+25
| | | | | | | | | | | | | | minilua, by default, is compiled by the host machine as a dependency for compiling the JIT/opcache extension. To successfully cross-compile, this needs to be run under QEMU to match the target architecture. According to the [RFC](https://wiki.php.net/rfc/jit), only x86 and x86_64 targets are supported. Signed-off-by: Ashley Cox <ashleyc@cybernetics.com> Signed-off-by: Claude Bing <cbing@cybernetics.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpsd: list files for gps-utils individuallyChristian Eggers2021-11-161-1/+27
| | | | | | | | | Avoid packaging 'gpsd' and 'gpsdctl' by gps-utils in configurations where ${bindir}==${sbindir} (e.g. nativesdk). Additionally provide ${sbindir} to scons for this case. Signed-off-by: Christian Eggers <ceggers@arri.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpsd: remove obsolete files from FILES:gps-utilsChristian Eggers2021-11-161-1/+1
| | | | | | | | - ${libdir}/gps/*.py is already packaged by python3-pygps - no files matches ${libdir}/gps/*.so Signed-off-by: Christian Eggers <ceggers@arri.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpsd: remove obsolete libgpsd packageChristian Eggers2021-11-161-4/+1
| | | | | | | | The gpsd project stopped shipping the libgpsd shared library in commmit 901bfe301956 (6 years ago). Signed-off-by: Christian Eggers <ceggers@arri.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpsd: remove obsolete files from FILES:${PN}-devChristian Eggers2021-11-161-2/+1
| | | | | | | | Files for pkg-config are installed under ${libdir}/pkg-config which is already set in bitbake.conf Signed-off-by: Christian Eggers <ceggers@arri.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* smcroute: upgrade 2.5.3 -> 2.5.4wangmy2021-11-161-1/+1
| | | | | | | | | | | | | | | Changes: Automatically extract new version from GIT tag Fixes: Avoid trying to delete inactive VIFs. Fixing an annoying bogus error: "Failed deleting VIF for iface lo: Resource temporarily unavailable" Fix #171: too small string buffer for IPv6 address causing garbled output in periodic expiry callback Fix too small buffer for IPv6 address in mroute display functions Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* samba: upgrade 4.14.8 -> 4.14.10Yi Zhao2021-11-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a security release in order to address the following defects: CVE-2016-2124: SMB1 client connections can be downgraded to plaintext authentication. https://www.samba.org/samba/security/CVE-2016-2124.html CVE-2020-25717: A user on the domain can become root on domain members. https://www.samba.org/samba/security/CVE-2020-25717.html CVE-2020-25718: Samba AD DC did not correctly sandbox Kerberos tickets issued by an RODC. https://www.samba.org/samba/security/CVE-2020-25718.html CVE-2020-25719: Samba AD DC did not always rely on the SID and PAC in Kerberos tickets. https://www.samba.org/samba/security/CVE-2020-25719.html CVE-2020-25721: Kerberos acceptors need easy access to stable AD identifiers (eg objectSid). https://www.samba.org/samba/security/CVE-2020-25721.html CVE-2020-25722: Samba AD DC did not do suffienct access and conformance checking of data stored. https://www.samba.org/samba/security/CVE-2020-25722.html CVE-2021-3738: Use after free in Samba AD DC RPC server. https://www.samba.org/samba/security/CVE-2021-3738.html CVE-2021-23192: Subsequent DCE/RPC fragment injection vulnerability. https://www.samba.org/samba/security/CVE-2021-23192.html See: https://www.samba.org/samba/history/samba-4.14.10.html Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libldb: upgrade 2.3.0 -> 2.3.2Yi Zhao2021-11-161-2/+2
| | | | | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiohttp: Upgrade 3.8.0 -> 3.8.1Leon Anavi2021-11-161-1/+4
| | | | | | | | | | | | | | | | | | | Upgrade to release 3.8.1: - Fix the error in handling the return value of getaddrinfo. getaddrinfo will return an (int, bytes) tuple, if CPython could not handle the address family. It will cause a index out of range error in aiohttp. For example, if user compile CPython with --disable-ipv6 option but his system enable the ipv6. - Do not install "examples" as a top-level package. - Restored ability to connect IPv6-only host. - Remove Signal from __all__, replace aiohttp.Signal with aiosignal.Signal in docs - Made chunked encoding HTTP header check stricter Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-aiosignal: Add recipeLeon Anavi2021-11-161-0/+12
| | | | | | | | | | | A list of registered asynchronous callbacks. Version 1.2.0: - Added support for Python 3.10 - Mark aiosignal as Python3-only package Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-frozenlist: Add recipeLeon Anavi2021-11-161-0/+8
| | | | | | | | | | | | | | | | | | A list-like structure which implements collections.abc.MutableSequence, and which can be made immutable. Version 1.2.0: - FrozenList now supports being used as a generic type as per PEP 585, e.g. frozen_int_list: FrozenList[int] (requires Python 3.9 or newer) - Added support for Python 3.10 - Started shipping platform-specific wheels with the musl tag targeting typical Alpine Linux runtimes - Started shipping platform-specific arm64 wheels for Apple Silicon Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-charset-normalizer: Add recipeLeon Anavi2021-11-161-0/+8
| | | | | | | | | | | | | | | | | | | Package for encoding & language detection. Charset detection. Version 2.0.7: - Add support for Kazakh (Cyrillic) language detection - Further improve inferring the language from a given code page (single-byte) - Remove redundant logging entry about detected language(s) - Trying to leverage PEP263 when PEP3120 is not supported - Refactoring for potential performance improvements in loops - Various detection improvement (MD+CD) - Fix a minor inconsistency between Python 3.5 and other versions regarding language detection Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-cchardet: Add recipeLeon Anavi2021-11-161-0/+8
| | | | | | | | | | | Universal character encoding detector, release 2.1.7: - support Python 3.9 - drop support for Python 3.5 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-soupsieve: Upgrade 2.3 -> 2.3.1Leon Anavi2021-11-161-1/+1
| | | | | | | | | | | Upgrade to release 2.3.1: - FIX: Ensure attribute selectors match tags that have new lines characters in attributes. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-colorlog: Upgrade 6.5.0 -> 6.6.0Leon Anavi2021-11-161-1/+1
| | | | | | | | | | | Upgrade to release 6.6.0: - Add a force_color option to colorlog.formatter.ColoredFormatter - Support the FORCE_COLOR environment variable Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-bandit: Uprade 1.7.0 -> 1.7.1Leon Anavi2021-11-161-2/+1
| | | | | | | | | | | | | Upgrade to release 1.7.1: - Fix broken reported URL link for B107 - fix reading initial values from .bandit - Always use a Loader in yaml.load - PEP-518 support: configure bandit via pyproject.toml Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-zeroconf: Upgrade 0.36.12 -> 0.36.13Leon Anavi2021-11-161-1/+1
| | | | | | | | | | | Upgrade to release 0.36.13: - Unavailable interfaces are now skipped during socket bind - Downgraded incoming corrupt packet logging to debug Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-aenum: Upgrade 3.1.3 -> 3.1.5Leon Anavi2021-11-161-1/+5
| | | | | | | | | | | Upgrade to release 3.1.5: - fix extend_enum() - tests: move enum setting from body to header Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-email-validator: new packageBartosz Golaszewski2021-11-162-0/+14
| | | | | | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-coverage: Upgrade 6.1.1 -> 6.1.2Leon Anavi2021-11-161-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 6.1.2: - Python 3.11 is supported (tested with 3.11.0a2). One still-open issue has to do with exits through with-statements. - Fix: When remapping file paths through the [paths] setting while combining, the [run] relative_files setting was ignored, resulting in absolute paths for remapped file names. This is now fixed. - Fix: Complex conditionals over excluded lines could have incorrectly reported a missing branch. This is now fixed. - Fix: More exceptions are now handled when trying to parse source files for reporting. Problems that used to terminate coverage.py can now be handled with [report] ignore_errors. This helps with plugins failing to read files. - Fix: Removed another vestige of jQuery from the source tarball. - Fix: Added a default value for a new-to-6.x argument of an internal class. This unsupported class is being used by coveralls. Although I'd rather not "fix" unsupported interfaces, it's actually nicer with a default value. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-astroid: Upgrade 2.8.4 -> 2.8.5Leon Anavi2021-11-161-1/+1
| | | | | | | | | | | | | | | | | Upgrade to release 2.8.5: - Use more permissive versions for the typed-ast dependencie (<2.0 instead of <1.5) - Fix crash on inference of __len__. - Added missing kind (for Const) and conversion (for FormattedValue) fields to repr. - Fix crash with assignment expressions, nested if expressions and filtering of statements - Fix incorrect filtering of assignment expressions statements Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-elementpath: Upgrade 2.3.2 -> 2.4.0Leon Anavi2021-11-161-1/+1
| | | | | | | | | | | | | Upgrade to release 2.4.0: - Fix type annotations and going strict on parsers and other public classes - Add XPathConstructor token class (subclass of XPathFunction) - Last release for Python 3.6 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-yarl: Upgrade 1.7.0 -> 1.7.2Leon Anavi2021-11-161-1/+1
| | | | | | | | | | | | Upgrade to release 1.7.2: - Changed call in with_port() to stop reencoding parts of the URL that were already encoded. - Fix 1.7.0 build error Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-zeroconf: Upgrade 0.36.9 -> 0.36.12Leon Anavi2021-11-161-1/+1
| | | | | | | | | | | | | Upgrade to release 0.36.12: - Prevent service lookups from deadlocking if time abruptly moves backwards - scope_id is now stripped from IPv6 addresses if given - Optimized decoding labels from incoming packets Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pydicti: Upgrade 1.1.4 -> 1.1.6Leon Anavi2021-11-161-2/+1
| | | | | | | | | | | | Upgrade to release 1.1.6: - Update the badges on the landing page - Maintenance release for testing automatic releases using GitHub Actions Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-yappi: Upgrade 1.3.2 -> 1.3.3Leon Anavi2021-11-162-53/+1
| | | | | | | | | | | Upgrade to release 1.3.3: - Fix 3.10 support - Fix wrong sorting key when tavg is selected Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* libmbim: upgrade 1.26.0 -> 1.26.2wangmy2021-11-151-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 5.9.20210905.0 -> 5.9.20211114.0wangmy2021-11-151-1/+1
| | | | | | | Make: fill "end:" fields Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* openvpn: Change the default cipher to AES-256-GCM for server configurationswangmy2021-11-151-1/+1
| | | | | | | | | | | | | | This change makes the server use AES-256-GCM instead of BF-CBC as the default cipher for the VPN tunnel. To avoid breaking existing running configurations defaulting to BF-CBC, the Negotiable Crypto Parameters (NCP) list contains the BF-CBC in addition to AES-CBC. This makes it possible to migrate existing older client configurations one-by-one to use at least AES-CBC unless the client is updated to v2.4 (which defaults to upgrade to AES-GCM automatically) Upstream-Status: Backport [https://src.fedoraproject.org/rpms/openvpn/blob/rawhide/f/0001-Change-the-default-cipher-to-AES-256-GCM-for-server-.patch] Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Revert "libgusb: Use the correct args to disable vala support"Martin Jansa2021-11-151-2/+0
| | | | | | | | | | | This reverts commit cb1968b5410fa415f5c6c70264ce83c4112b6d4d. There is already vapi PACKAGECONFIG added in: https://git.openembedded.org/meta-openembedded/commit/?id=8e816f6fd17ae4142e67b2224ef88dae97435a1c which resolves this. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Support external wayland configPhilippe Coval2021-11-151-0/+5
| | | | | | | | | | This part should be reverted once xdg-shell is supported in lvgl Relate-to: https://github.com/lvgl/lvgl/issues/2534 Forwarded: https://github.com/openembedded/meta-openembedded/pull/483 Origin: https://git.ostc-eu.org/distro/oniro/-/merge_requests/355 Signed-off-by: Philippe Coval <philippe.coval@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tracker,tracker-miners: Upgrade to 3.2.1Khem Raj2021-11-132-3/+4
| | | | | | | | | | | This is latest release for tracker components Release Notes [1] [2] [1] https://gitlab.gnome.org/GNOME/tracker/-/commit/bcf1347a9eea300d11c95a78f8f74f38131bb560 [2] https://gitlab.gnome.org/GNOME/tracker-miners/-/commit/1e1a9e701faae73148fc05613b7e237715ad0cc9 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gedit: introspection is not valid meson optionKhem Raj2021-11-131-1/+1
| | | | | | | meson 0.60+ errors out on unknown options and -Dintrospection is not a valid option Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tracker-miners: introspection is not valid meson optionKhem Raj2021-11-131-1/+1
| | | | | | | meson 0.60+ errors out on unknown options and -Dintrospection is not a valid option Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gjs: introspection is not valid meson optionKhem Raj2021-11-131-1/+1
| | | | | | | meson 0.60+ errors out on unknown options and -Dintrospection is not a valid option Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tepl: introspection is not valid meson optionKhem Raj2021-11-131-1/+1
| | | | | | | meson 0.60+ errors out on unknown options and -Dintrospection is not a valid option Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgweather: introspection is not valid meson optionKhem Raj2021-11-131-1/+1
| | | | | | | meson 0.60+ errors out on unknown options and -Dintrospection is not a valid option Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmediaart: introspection is not valid meson optionKhem Raj2021-11-131-1/+1
| | | | | | | meson 0.60+ errors out on unknown options and -Dintrospection is not a valid option Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gnome-desktop: introspection is not valid meson optionKhem Raj2021-11-131-1/+2
| | | | | | | meson 0.60+ errors out on unknown options and -Dintrospection is not a valid option Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tracker: introspection is not valid meson optionKhem Raj2021-11-131-1/+1
| | | | | | | meson 0.60+ errors out on unknown options and -Dintrospection is not a valid option Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xf86-video-nouveau: fixup driver for new X server ABIKhem Raj2021-11-132-0/+67
| | | | | | Backport relevant patch Signed-off-by: Khem Raj <raj.khem@gmail.com>
* open-vpm-tools: update 11.2.5 -> 11.3.5Alexander Kanavin2021-11-137-112/+52
| | | | | | | | | | | Drop 0001-hgfsmounter-Makefile.am-support-usrmerge.patch (file no longer present) 0001-pollGtk-Fix-volatile-qualifier-exposed-incorrectly.patch (issue fixed upstream) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libstatgrab: update 0.92 -> 0.92.1Alexander Kanavin2021-11-132-37/+2
| | | | | Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxmlb: put binary into separate packageRoss Burton2021-11-131-1/+3
| | | | | | | | xb-tool is for debugging purposes only and isn't needed in normal use. Inherit lib_package so the binary isn't installed by default. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgusb: Use the correct args to disable vala supportRichard Hughes2021-11-131-0/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mozjs-91: fix do_configure failureChangqing Li2021-11-132-0/+51
| | | | | | | | | | | | do_configure fails occasionally with following error: | File "/firefox-91.1.0/build/moz.configure/util.configure", line 239, in try_invoke_compiler | os.remove(path) | FileNotFoundError: [Errno 2] No such file or directory: '/tmp/conftest.jr1qrcw3.cpp' change the temp file's prefix to avoid it is deleted by others Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mozjs-78: fix do_configure failureChangqing Li2021-11-132-0/+51
| | | | | | | | | | | | do_configure fails occasionally with following error: | File "/firefox-91.1.0/build/moz.configure/util.configure", line 239, in try_invoke_compiler | os.remove(path) | FileNotFoundError: [Errno 2] No such file or directory: '/tmp/conftest.jr1qrcw3.cpp' change the temp file's prefix to avoid it is deleted by others Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sdbus-c++-libsystemd: Upgrade to 249.5Khem Raj2021-11-1334-1256/+1768
| | | | | | | This is enforced by meson 60.x which otherwise would need some partial backports to get it going. Signed-off-by: Khem Raj <raj.khem@gmail.com>