summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* layers: Move READMEs to markdown formatKhem Raj2023-06-1711-0/+0
| | | | | | | The READMEs are often viewed from websites markdown format which is much as readable as text and yet friendlier in browsers. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gosu: Upgrade to 1.16 releaseKhem Raj2023-06-151-2/+5
| | | | | | | | | ChangeLog is here https://github.com/tianon/gosu/releases/tag/1.15 https://github.com/tianon/gosu/releases/tag/1.16 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sqlparse: fix CVE-2023-30608Joe Slater2023-06-152-0/+52
| | | | | | | Backport from commit c457abd5f... upstream. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opencv: Fix for CVE-2023-2617Soumya2023-06-152-0/+89
| | | | | | | | | | | | | | A vulnerability classified as problematic was found in OpenCV wechat_qrcode Module up to 4.7.0. Affected by this vulnerability is the function DecodedBitStreamParser::decodeByteSegment of the file qrcode/decoder/decoded_bit_stream_parser.cpp. The manipulation leads to null pointer dereference. The attack can be launched remotely. The exploit has been disclosed to the public and may be used. It is recommended to apply a patch to fix this issue. The associated identifier of this vulnerability is VDB-228547. Signed-off-by: Soumya <soumya.sambu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-stopit: fix override syntaxPeter Marko2023-06-151-1/+1
| | | | | Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ntpd: switch service type from forking to simpleJohannes Kauffmann2023-06-151-3/+2
| | | | | | | | | | | | | | | | | | Type=forking means systemd waits untill the main process, /usr/sbin/ntpd in this case, has exited. However, the ntpd daemon does not seem to call fork() or vfork() and runs endlessly untill killed. Eventually, this causes systemd to trigger a timeout, and the ntpd service is killed. All the while, "systemctl status ntpd" shows "activating (start)" instead of "active (running)". This is fixed by switching Type=forking to Type=simple. Reading ntpd(8) shows that the "-n" option requests ntpd not to fork, so also use that to be safe. Finally, there is no need anymore to keep a pidfile around. Signed-off-by: Johannes Kauffmann <johanneskauffmann@hotmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgpiod: modify test 'gpioset: toggle (continuous)'Joe Slater2023-06-142-0/+69
| | | | | | | | | | Look for level transitions when testing toggling values because using fixed delays to assume value changes is not reliable. Signed-off-by: Joe Slater <joe.slater@windriver.com> Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* zeromq: consider license exception over LGPL-3.0Remi Peuvergne2023-06-141-1/+1
| | | | | Signed-off-by: Remi Peuvergne <remi.peuvergne@non.se.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtracefs: Fix build with clang+muslKhem Raj2023-06-142-0/+32
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Wang Mingyu <wangmy@fujitsu.com>
* libtracefs: upgrade 1.6.4 -> 1.7.0Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | Changelog: ========== - Fixes to the tests. - Added meson build support (but it is not the default). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opengl-es-cts: 3.2.8.0 -> 3.2.9.3Randolph Sapp2023-06-143-14/+18
| | | | | | | | | | | | | Bump the opengl-es-cts version to latest since this package is currently incompatible with Weston 10 due to changes in wayland-protocols. I would bump the vulkan-cts test revision here as well, but unfortunately newer versions of vulkan-cts add video encode/decode tests from Nvidia that break on any arch other than amd64 in their current format. Signed-off-by: Randolph Sapp <rs@ti.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python_mesonpy: New classZoltán Böszörményi2023-06-141-0/+52
| | | | | | | | | | | | | This is a new PEP517 compatible build class for python modules that use pyproject.toml and this: [build-system] build-backend = 'mesonpy' The new class uses python3-meson-python-native. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-meson-python: New recipeZoltán Böszörményi2023-06-141-0/+23
| | | | | | | | This python module adds support for a new PEP517 build backend used by recent versions of scikit-image, scipy and others. Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* redis: use the files path correctlyChen Qi2023-06-1410-2/+0
| | | | | | | | | | | | | | | | | | | | | Recipes are not expected to set FILESPATH directly, they are expected to use FILESEXTRAPATH. I can see the seting of FILESPATH in this recipe only wants to find redis-7 specific patches and files. This could be easily achieved by using redis-7.0.11/ directory to hold all those files. Using FILESPATH in this way removes the possibility of overriding some files (e.g., the redis service file) from other layers via FILESEXTRAPATH:prepend, which is kind of a common practice and is actually working for basically all other recipes. This is because we have: meta/classes-global/base.bbclass:FILESPATH = "${@base_set_filespath(["${FILE_DIRNAME}/${BP}", "${FILE_DIRNAME}/${BPN}", "${FILE_DIRNAME}/files"], d)}" And FILESEXTRAPATH is handled in base_set_filespath. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gnome-software: upgrade 44.1 -> 44.2Markus Volk2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | Version 44.2 ~~~~~~~~~~~~ Released: 2023-05-25 This is a stable release with the following changes: * Fix subsequent checking for updates if the first check after login fails * Fix checking for updates when automatic updates are disabled * Fix rare stall when many background jobs are running * Don’t download rpm-ostree updates when only checking if updates are available * Fix bug with listing flatpak addons when multiple flathub remotes are enabled * Fix duplicated sources in app details page when using an appstream URL * Reduce background resource consumption when idle This release also updates translations: * Czech (Daniel Rusek) * Italian (Gianvito Cavasoli) Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* open62541: allow disabling subscriptionsJohannes Kauffmann2023-06-141-1/+3
| | | | | | | By default, subscriptions are turned on. Signed-off-by: Johannes Kauffmann <johanneskauffmann@hotmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* open62541: add multithreading PACKAGECONFIG optionJohannes Kauffmann2023-06-141-0/+1
| | | | | | | | By default, open62541 is built without multithreading support. Make this configurable. Signed-off-by: Johannes Kauffmann <johanneskauffmann@hotmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tio: upgrade 2.5 -> 2.6Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: ========== * Remove warning when using pattern option * Add --log-append option * Update man page * Update README * Fix line termination for response wait feature * Update tty device listing configuration * Move map variables to tty to keep them all in one spot * Configure socket mapping flags from tty parsing logic. Remove duplicate parsing logic in socket * Support input mapping modes for sockets * Various spelling fixes * avoid "warning: unused parameter" on setspeed stub * use right /dev/ path on Haiku * Update README with details on snap confinement Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* remmina: upgrade 1.4.30 -> 1.4.31Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== * [REM-2874] muli password changer search now matches partial strings * Fix segfault in VNC when using domain socket * Switched pylist Append to SetItem * Template texts updated * Add menu option to delete multiple profiles at the same time * add 1080p as a default resolution to remmina_pref.c * Add ubuntu22.04 dockerfile * Remove character limit on password length * Create better postats.html * Redesign santahat.png & add santahat.svg * Edit preferences UI * Change the icon of the new connection button * Modify the checkbox of the appearance-tab * Add valign to the switch of the debugging window * plugins/rdp: Ensure output redirection configuration applies to both dynamic and static rdpsnd Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zeroconf: upgrade 0.63.0 -> 0.64.1Wang Mingyu2023-06-141-1/+1
| | | | | | | | Fix: Small internal typing cleanups Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-websocket-client: upgrade 1.5.2 -> 1.5.3Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | Changelog: ============ - Add logic to avoid error in the case where content-length header does not exist, bug introduced in 1.5.2 (#911) - Fix wsdump.py script typing, bug introduced in 1.5.2 (#91) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sentry-sdk: upgrade 1.25.0 -> 1.25.1Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | Changelog: ========== Fix parse_url (#2161) Better version parsing in integrations (#2152) Align HTTP status code as span data field http.response.status_code (#2113) Do not encode cached value to determine size (#2143) Fix using unittest.mock whenever available (#1926) Fix 2.7 common tests (#2145) Bump actions/stale from 6 to 8 (#1978) Bump black from 22.12.0 to 23.3.0 (#1984) Bump mypy from 1.2.0 to 1.3.0 (#2110) Bump sphinx from 5.3.0 to 7.0.1 (#2112) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymodbus: upgrade 3.3.0 -> 3.3.1Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | Changelog: ============ transport fixes and 100% test coverage. (#1580) Delay self.loop until connect(). (#1579) Added mechanism to determine if server did not start cleanly (#1539) Proof transport reconnect works. (#1577) Fix non-shared block doc in config.rst. (#1573) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: upgrade 2.4.171 -> 2.4.172Wang Mingyu2023-06-141-1/+1
| | | | | | | | | Changelog: ============ - Update settings.default.py - tags not tag. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pykickstart: upgrade 3.47 -> 3.48Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | Changelog: =========== displaymode: Update description to describe behavior network: Move new options to Fedora 39 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-imageio: upgrade 2.30.0 -> 2.31.0Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | Changelog: =========== Fix pilmode kwarg for get_reader/get_writer (#994) (21039b2) Decode gray 16-bit PNG as uint16 (not int32) if pillow allows (#987) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-hexbytes: upgrade 0.3.0 -> 0.3.1Wang Mingyu2023-06-141-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-django: upgrade 4.2.1 -> 4.2.2Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== - Fixed a regression in Django 4.2 that caused an unnecessary DBMS_LOB.SUBSTR() wrapping in the __isnull and __exact=None lookups for TextField()/BinaryField() on Oracle (#34544). - Restored, following a regression in Django 4.2, get_prep_value() call in JSONField subclasses (#34539). - Fixed a regression in Django 4.2 that caused a crash of QuerySet.defer() when passing a ManyToManyField or GenericForeignKey reference. While doing so is a no-op, it was allowed in older version (#34570). - Fixed a regression in Django 4.2 that caused a crash of QuerySet.only() when passing a reverse OneToOneField reference (#34612). - Fixed a bug in Django 4.2 where makemigrations --update didn't respect the --name option (#34568). - Fixed a performance regression in Django 4.2 when compiling queries without ordering (#34580). - Fixed a regression in Django 4.2 where nonexistent stylesheet was linked on a "Congratulations!" page (#34588). - Fixed a regression in Django 4.2 that caused a crash of QuerySet.aggregate() with expressions referencing other aggregates (#34551). - Fixed a regression in Django 4.2 that caused a crash of QuerySet.aggregate() with aggregates referencing subqueries (#34551). - Fixed a regression in Django 4.2 that caused a crash of querysets on SQLite when filtering on DecimalField against values outside of the defined range (#34590). - Fixed a regression in Django 4.2 that caused a serialization crash on a ManyToManyField without a natural key when its Manager's base QuerySet used select_related() (#34620). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cmake: upgrade 3.26.3 -> 3.26.4Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: ========== chore(deps): bump cmake from 3.26.1 to 3.26.3 chore(deps): update pre-commit hooks chore: remove unused requirements-deploy.txt chore(deps): bump pypa/cibuildwheel from 2.12.1 to 2.12.3 chore(deps): update pre-commit hooks chore(deps): bump pypa/gh-action-pypi-publish from 1.8.5 to release/v1 chore: only bump OpenSSL to 3.0.x (current LTS version) Update to CMake 3.26.4 chore: use trusted publisher deployment chore(deps): update pre-commit hooks chore(deps): bump pypa/cibuildwheel from 2.12.3 to 2.13.0 Update to OpenSSL 3.0.9 fix(cross-compile): Fix download of arm64 CMake binaries Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cassandra-driver: upgrade 3.27.0 -> 3.28.0Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ Features --------- Add support for vector type (PYTHON-1352) Cryptography module is now an optional dependency (PYTHON-1351) Bug Fixes ---------- Store IV along with encrypted text when using column-level encryption (PYTHON-1350) Create session-specific protocol handlers to contain session-specific CLE policies (PYTHON-1356) Others --------- Use Cython for smoke builds (PYTHON-1343) Don't fail when inserting UDTs with prepared queries with some missing fields (PR 1151) Convert print statement to function in docs (PR 1157) Update comment for retry policy (DOC-3278) Added error handling blog reference (DOC-2813) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-autobahn: upgrade 23.1.2 -> 23.6.1Wang Mingyu2023-06-141-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-argcomplete: upgrade 3.0.8 -> 3.1.0Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | Changelog: ========= setup.py -> pyproject.toml migration start (#427) Improve user install logic in activate-global-python-argcomplete (#437) Ensure Python 3.7 compatibility in check_console_script (#436) ZSH implementation fixes (#431, #433) Documentation improvements Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* php: upgrade 8.2.6 -> 8.2.7Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | Changelog: ========== . Fixed bug GH-11152 (Unable to alias namespaces containing reserved class names). . Fixed bug GH-9068 (Conditional jump or move depends on uninitialised value(s)). . Fixed bug GH-11189 (Exceeding memory limit in zend_hash_do_resize leaves the array in an invalid state). . Fixed bug GH-11063 (Compilation error on old GCC versions). . Fixed bug GH-11222 (foreach by-ref may jump over keys during a rehash). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pcsc-lite: upgrade 1.9.9 -> 2.0.0Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | Changelog: ============ - Adjust USB drivers path at run-time via environment variable PCSCLITE_HP_DROPDIR - Add '--disable-polkit' option - Reset eventCounter when a reader is removed - Add "polkit" in "pcscd -v" output if enabled - Doxygen: document SCARD_E_INVALID_VALUE for some functions - use secure_getenv(3) if available - Some other minor improvements Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-platformdirs: upgrade 3.5.1 -> 3.5.3Wang Mingyu2023-06-141-1/+1
| | | | | | | | Changelog: Add 3.12 marker Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-utils: upgrade 2.1.0 -> 2.1.1Wang Mingyu2023-06-141-2/+2
| | | | | | | License-Update: Copyright year updated to 2023. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-typing: upgrade 3.3.0 -> 3.4.0Wang Mingyu2023-06-141-2/+2
| | | | | | | License-Update: Copyright year updated to 2023. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-hash: upgrade 0.5.1 -> 0.5.2Wang Mingyu2023-06-141-2/+2
| | | | | | | License-Update: Copyright year updated to 2023. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-account: upgrade 0.8.0 -> 0.9.0Wang Mingyu2023-06-141-2/+2
| | | | | | | License-Update: Copyright year updated to 2023 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ntp: upgrade 4.2.8p16 -> 4.2.8p17Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | Changelog: =========== * [Bug 3824] Spurious "ntpd: daemon failed to notify parent!" logged at event_sync. * [Bug 3822] ntpd significantly delays first poll of servers specified by name. * [Bug 3821] 4.2.8p16 misreads hex authentication keys, won't interop with 4.2.8p15 or earlier. * Add tests/libntp/digests.c to catch regressions reading keys file or with symmetric authentication digest output. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nautilus: upgrade 44.2 -> 44.2.1Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | Changelog: =========== * Hotfix for grid view bug introduced in 44.2, while gtk 4.10.4 is not released * Fix crash when closing tabs right after clicking Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mpich: upgrade 4.1.1 -> 4.1.2Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | Changelog: ========== with recent versions of LLVM/Clang different floating point values attribute on the same object Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mbpoll: upgrade 1.5.0 -> 1.5.2Wang Mingyu2023-06-141-1/+1
| | | | | | | | | Changelog: ========== Fixes Remove FieldTalk trademark Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libqb: upgrade 2.0.6 -> 2.0.7Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== lib: Fix some small bugs spotted by newest covscan (#471) ipc: Retry receiving credentials if the the message is short (#476) timer: Move state check to before time check (#479) tests: Close race condition in check_loop (#480) blackbox: fix potential overlow/memory corruption (#486) tests: Make ipc test more portable (#466) tests: cleanup the last of the empty directories (#467) doxygen2man: Fix function parameter alignment (#468) tests: Fix tests on FreeBSD-devel (#469) test: Remove gnu/lib-names.h from libstat_wrapper.c (#482) tests: allow -j to work (#485) Update -version info for 2.0.7 Add --disable-tests option (#475) configure: Modernize configure.ac a bit (#470) spec: Migrate to SPDX license (#487) add simplified chinese readme (#474) m4/ax_pthread.m4: update to latest upstream version (serial 31) (#472) strlcpy: avoid compiler warning from strncpy (#473) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libjcat: upgrade 0.1.13 -> 0.1.14Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | Bugfixes: - Fix header includes - Fix prefix of LIBJCAT_CHECK_VERSION - Use project_source_root to fix building as a subproject Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libadwaita: upgrade 1.3.2 -> 1.3.3Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | Changelog: ========= - Fix doc include path - AdwCarousel - Fix scrolling to a recently inserted item - AdwEntryRow - Fix accessibility - AdwPreferencesWindow - Fix markup handling when searching - AdwStyleManager - Fix get_for_display() annotation - AdwTabBar/AdwTabOverview - Fix dropping data onto tabs/thumbnails - Translation updates - Brazilian Portuguese - Slovak Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ipcalc: upgrade 1.0.2 -> 1.0.3Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | Changelog: =========== - When --no-decorate is given the default output will include no colors (#28) - Correctly split networks with /31 (#25) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gjs: upgrade 1.76.0 -> 1.76.1Wang Mingyu2023-06-141-1/+1
| | | | | | | | | | | | | | | | | | | | Changelog: =========== - Various fixes ported from the development branch. - Closed bugs and merge requests: * gnome-shell crashes on exit in js::gc::Cell::storeBuffer * Memory leak with GError * GVariant return values leaked * GBytes's are leaked when passed as-is to a function * Transformated GValues are leaking temporary instances * GHash value infos are leaked * "flat" arrays of GObject's are leaked * Gjs console leaks invalid option errors * gjs can't print null Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ctags: upgrade 6.0.20230604.0 -> 6.0.20230611.0Wang Mingyu2023-06-141-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sblim-sfcb: Fix build with lld linkerKhem Raj2023-06-141-0/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>