aboutsummaryrefslogtreecommitdiff
path: root/libs
Commit message (Collapse)AuthorAge
* elektra: fix compilation with external iconvRosen Penev2022-07-10
| | | | | | Patch mostly taken from hidapi. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libmad: update to 0.16.2Rosen Penev2022-07-08
| | | | | | Backport aarch64 patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* liburing: Update to v2.2Christian Lachner2022-07-08
| | | | | | - Updated download URL and hash Signed-off-by: Christian Lachner <gladiac@gmail.com>
* libarchive: fix ext2fs build race error conditionPetr Štetiar2022-07-05
| | | | | | | | | | | | | | | | libarchive looks for ext2fs headers during configure, and if it finds them it will expect to find them during compile, or on the rare occasion when they aren't it will fail: libarchive/archive_entry.c:59:55: fatal error: ext2fs/ext2_fs.h: No such file or directory As we just need headers for some type constants, let's re-use headers from tools/e2fsprogs package which are always available. Reported-by: Adam Dov <adov@maxlinear.com> Suggested-by: Paul Eggleton <paul.eggleton@linux.intel.com> References: https://git.yoctoproject.org/poky/commit/?id=f0b9a7cf9f80be1917e45266fa201f464a28c1e5 Signed-off-by: Petr Štetiar <ynezz@true.cz>
* gnutls: disable brotliNick Hainke2022-07-05
| | | | | | | Disable the brotli library by default. It is not used and may prevent linking issues in the future. Signed-off-by: Nick Hainke <vincent@systemli.org>
* gnutls: fix disable zstdNick Hainke2022-07-05
| | | | | | | | | | | Configure.ac syntax changed to: Old: --without-libbrotli --without-libzstd (also --with-*) New: --without-brotli --without-zstd (also --with-*) https://github.com/gnutls/gnutls/commit/6b794e49d1a14e43f9e08023f958364712c3c89a Fixes: 6385813ddfb4 ("gnutls: update to 3.7.5") Signed-off-by: Nick Hainke <vincent@systemli.org>
* gnutls: update to 3.7.6Nick Hainke2022-07-04
| | | | Signed-off-by: Nick Hainke <vincent@systemli.org>
* gnutls: update to 3.7.5Nick Hainke2022-07-04
| | | | Signed-off-by: Nick Hainke <vincent@systemli.org>
* gnutls: cleanup MakefileNick Hainke2022-07-04
| | | | | | | | - Add PKG_LICENSE_FILES - Use SPDX - Rearrange Signed-off-by: Nick Hainke <vincent@systemli.org>
* radcli: uptdate to 1.3.0Nick Hainke2022-07-03
| | | | | | | | | | | | | - Removed duplicate function definition from util.h - Increased size of dictionary vendor and values to 32-bits from 16; this breaks the ABI from the previous release. - Corrected a string termination issue in rc_avpair_tostr() - Added functions to create dictionary without a file: rc_dict_addattr rc_dict_addval rc_dict_addvend Signed-off-by: Nick Hainke <vincent@systemli.org>
* totem-pl-parser: depend on shared-mime-infoW. Michael Petullo2022-07-02
| | | | | | | | The totem-pl-parser library seems to rely on freedesktop.org's MIME-type definitions to parse playlist files. Without them, parsing will produce a TOTEM_PL_PARSER_RESULT_IGNORED error. Signed-off-by: W. Michael Petullo <mike@flyn.org>
* hidapi: update to 0.12.0Rosen Penev2022-06-22
| | | | | | | | Switch to cmake. Add upstream patch fixing iconv detection. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libmad: update to 0.16.1Rosen Penev2022-06-22
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* samba4: drop maintainershipAndy Walsh2022-06-21
| | | | | | | | | | | | | drop maintainership: * samba4 * ksmbd-tools * perl-parse-yapp * libtirpc * softethervpn5 * wsdd2 * rpcsvc-proto Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
* libowfat: try to fix compilation under ARCRosen Penev2022-06-20
| | | | | | CFLAGS are not being passed. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: remove PKG_INSTALL for meson projectsRosen Penev2022-06-15
| | | | | | It doesn't seem to be used by meson. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libpsl: use iconv dependencyRosen Penev2022-06-10
| | | | | | Removed need for manual iconv handling. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* glib2: replace intl patch with upstream solutionRosen Penev2022-06-09
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libwebsockets: fix compilation with GCC12Rosen Penev2022-06-09
| | | | | | Upstream backport. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* glib2: update libintl handlingSebastian Kemper2022-06-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | glib2's meson.build runs check cc.has_function('ngettext', args : osx_ldflags) and, if successful, it never looks for non-libc libintl. For musl and glibc this test is always successful. glib2 unconditionally sets ENABLE_NLS, so during compile <libintl.h> gets included always. But then we have a disconnect when the OpenWrt pkg is being built with BUILD_NLS=y, because the <libintl.h> will be from libintl-full but glib2 will not link to libintl-full. With BUILD_NLS=n there's no problem, because the <libintl.h> will be from libc. In lieu of proper libintl detection in glib2's meson build, removing the SED call from the Makefile together with the added patch sorts this out. The SED call can be removed because when we force libintl-full use, the meson build will put the necessary linker flag into the pkg-config file itself. Alpine Linux does something similar (see [1]), but they always force the use of the external libintl. I assume they always go for full NLS support. [1] https://git.alpinelinux.org/aports/tree/main/glib/musl-libintl.patch Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* libtirpc: don't build host shared librariesRosen Penev2022-06-04
| | | | | | Avoids having to use rpath hacks. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libndpi: fix pcre2 dependency nameToni Uhlig2022-06-04
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* libndpi: update to 4.2Toni Uhlig2022-06-03
| | | | | | - removed clunky sed patching, issue was fixed upstream Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Merge pull request #18669 from wigyori/openblas-riscvAlexandru Ardelean2022-06-02
|\ | | | | openblas: compile with RISCV64_GENERIC target on riscv64 arch
| * libs: openblas: compile with RISCV64_GENERIC target on riscv64 archZoltan HERPAI2022-05-31
| | | | | | | | Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
* | nspr: update to 4.34Lucian Cristian2022-05-30
| | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | nss: update to 3.78Lucian Cristian2022-05-30
| | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | libxml2: update to 2.9.14Michael Heimpold2022-05-29
|/ | | | | | This fixes CVE-2022-29824. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* glib2: update to 2.70.5Rosen Penev2022-05-22
| | | | | | Enabled glib_checks to fix podman. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libcoap: make sure `libcoap-3-notls.so` is installedLeo Soares2022-05-20
| | | | | | | | This commit fixes an issue where the `libcoap-3-notls.so` is not installed, in some cases leaving the target's root with no library and just a broken link from `libcoap-3.so` to `libcoap-3-notls.so`. Signed-off-by: Leo Soares <leo@hyper.ag>
* openldap: drop use of HTTP in favor of HTTPSW. Michael Petullo2022-05-20
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* libdaq3: update to 3.0.7W. Michael Petullo2022-05-14
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* libqmi: bump to 1.30.6Aleksander Morgado2022-05-14
| | | | Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
* libmbim: bump to 1.26.4Aleksander Morgado2022-05-14
| | | | Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
* hwloc: update to 2.7.1W. Michael Petullo2022-05-11
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* libgcrypt: update to 1.10.1W. Michael Petullo2022-05-11
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* libgee: update to 0.20.5W. Michael Petullo2022-05-11
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* openldap: update to 2.6.2W. Michael Petullo2022-05-11
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* vips: update to 8.12.2W. Michael Petullo2022-05-11
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* libgpg-error: update to 1.45W. Michael Petullo2022-05-11
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* cyrus-sasl: update to 2.1.28W. Michael Petullo2022-05-11
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* xr_usb_serial_common: bump to 2022-03-30Eneas U de Queiroz2022-05-11
| | | | | | | | | | | | | This is the latest commit that touches the xr_usb_serial_common-1a dir. The changes are restricted to whitespace fixes and kernel version adaptations: ecc6ebe xr_usb: Use tty_driver_kref_put for kernel 5.15 and above caf6d25 xr_usb: Use tty_alloc_driver for kernel 5.15 and above a42b7e6 xr_usb: Compilation fixes for kernel 5.14 497adb7 #39 fix compilation for newer linux kernels 9103471 xr_usb: fix some whitespace errors Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* Merge pull request #18486 from oskarirauta/libslirpJeffery To2022-05-12
|\ | | | | libslirp: update to v4.7.0
| * libslirp: update to v4.7.0Oskari Rauta2022-05-09
| | | | | | | | | | | | | | | | Bug fixes etc.. List of changes available at: https://gitlab.freedesktop.org/slirp/libslirp/-/blob/master/CHANGELOG.md Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | icu: bump to 71.1Hirokazu MORIKAWA2022-05-07
|/ | | | | | | | | | | | | | | Description: ICU 71 updates to CLDR 41 locale data with various additions and corrections. ICU 71 adds phrase-based line breaking for Japanese. Existing line breaking methods follow standards and conventions for body text but do not work well for short Japanese text, such as in titles and headings. This new feature is optimized for these use cases. ICU 71 adds support for Hindi written in Latin letters (hi_Latn). The CLDR data for this increasingly popular locale has been significantly revised and expanded. Note that based on user expectations, hi_Latn incorporates a large amount of English, and can also be referred to as “Hinglish” ICU 71 and CLDR 41 are minor releases, mostly focused on bug fixes and small enhancements. (The fall CLDR/ICU releases will update to Unicode 15 which is planned for September.) We are also working to re-establish continuous performance testing for ICU, and on development towards future versions. ICU 71 updates to the time zone data version 2022a. Note that pre-1970 data for a number of time zones has been removed, as has been the case in the upstream tzdata release since 2021b. Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* boost: Updates package to version 1.79.0Carlos Miguel Ferreira2022-04-30
| | | | | | | | | | | | | | | | | | | | | | This commit updates boost to version 1.79.0 There are no new libraries in this version The following patches were removed due to upstream update: * 010-fix-b2-install.patch [1] * 020-fix-musl-build.patch [2] More info about Boost 1.79.0 can be found at the usual place [3]. Note: This package update includes a fix merged to Boost.JSON in [4] which did not make into this version. [1]: https://github.com/boostorg/build/commit/78fd284a42caabe8815cb0870b46e5567872e75b [2]: https://github.com/boostorg/interprocess/pull/162 [3]: https://www.boost.org/users/history/version_1_79_0.html [4]: https://github.com/boostorg/json/issues/692 Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* Revert "boost: Updates package to version 1.79.0"Rosen Penev2022-04-29
| | | | This reverts commit 70b7dc87d408e5a69a96bf0879f3b1f2192f7460.
* libtorrent-rasterbar: Update to 2.0.6Tianling Shen2022-04-29
| | | | | | | Added new dependency "libstdcpp". Removed an upstreamed patch. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* boost: Updates package to version 1.79.0Carlos Miguel Ferreira2022-04-27
| | | | | | | | | | | | | | | | This commit updates boost to version 1.79.0 There are no new libraries in this version More info about Boost 1.79.0 can be found at the usual place [1]. Note: This package update includes a fix merged to Boost.JSON in [2] which did not make into this version. [1]: https://www.boost.org/users/history/version_1_79_0.html [2]: https://github.com/boostorg/json/issues/692 Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* libpqxx: update to version 7.7.3Igor Bezzubchenko2022-04-21
| | | | Signed-off-by: Igor Bezzubchenko <garikello@gmail.com>