aboutsummaryrefslogtreecommitdiff
path: root/libs/gnutls/Makefile
Commit message (Collapse)AuthorAge
* gnutls: update to 3.7.8Nick Hainke2022-10-09
| | | | | | | Release Notes: https://lists.gnupg.org/pipermail/gnutls-help/2022-September/004765.html Signed-off-by: Nick Hainke <vincent@systemli.org>
* gnutls: update to 3.7.7Nick Hainke2022-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - libgnutls: Fixed double free during verification of pkcs7 signatures. Reported by Jaak Ristioja (#1383). [GNUTLS-SA-2022-07-07, CVSS: medium] [CVE-2022-2509] - libgnutls: gnutls_hkdf_expand now only accepts LENGTH argument less than or equal to 255 times hash digest size, to comply with RFC 5869 2.3. - libgnutls: Length limit for TLS PSK usernames has been increased from 128 to 65535 characters (#1323). - libgnutls: AES-GCM encryption function now limits plaintext length to 2^39-256 bits, according to SP800-38D 5.2.1.1. - libgnutls: New block cipher functions have been added to transparently handle padding. gnutls_cipher_encrypt3 and gnutls_cipher_decrypt3 can be used in combination of GNUTLS_CIPHER_PADDING_PKCS7 flag to automatically add/remove padding if the length of the original plaintext is not a multiple of the block size. - libgnutls: New function for manual FIPS self-testing. API and ABI modifications: - gnutls_fips140_run_self_tests: New function - gnutls_cipher_encrypt3: New function - gnutls_cipher_decrypt3: New function - gnutls_cipher_padding_flags_t: New enum Signed-off-by: Nick Hainke <vincent@systemli.org>
* gnutls: Avoid building unused gnutls dependencyBoris Krasnovskiy2022-07-30
| | | | | | Avoid building unused gnutls dependency Signed-off-by: Boris Krasnovskiy <borkra@gmail.com>
* 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>
* gnutls: Update to 3.7.4John Audia2022-03-30
| | | | | | | | | | | | | | | | | | Bump to latest upstream release. Rebased existing patches. This version introduces certificate compression support, and with that, optional dependencies on zlib and zstd. When configure picks them up, build will fail due to missing dependencies: Package libgnutls is missing dependencies for the following libraries: libz.so.1 libzstd.so.1 Disable zlib and zstd support to avoid that. Signed-off-by: John Audia <graysky@archlinux.us> [disable zlib and zstd] Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* gnutls: update to 3.7.2Rosen Penev2022-03-30
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gnutls: add build dependency on gettext-full/hostStijn Tintel2022-03-30
| | | | | | | | | | | | | | | | | | | | | | | | | | The gnutls package uses the gettext-version fixup, which is only available if gettext-full/host has been built. Add the missing build dependency to fix these errors: bash: line 1: /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/gettext: No such file or directory bash: line 1: /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/autopoint: No such file or directory It also prevents configure from using host gettext: checking for msgfmt... /usr/bin/msgfmt checking for gmsgfmt... /usr/bin/gmsgfmt checking for xgettext... /usr/bin/xgettext checking for msgmerge... /usr/bin/msgmerge vs: checking for msgfmt... /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/msgfmt checking for gmsgfmt... /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/gmsgfmt checking for xgettext... /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/xgettext checking for msgmerge... /home/stijn/Development/OpenWrt/openwrt/staging_dir/hostpkg/bin/msgmerge Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* gnutls: enable AUTORELEASEStijn Tintel2022-03-30
| | | | | | | Enable AUTORELEASE in a separate commit so that the next commit can be reverted without having to manually re-introduce it. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* gnutls: don't run aclocal --installEneas U de Queiroz2021-11-03
| | | | | | | | | | | | | | | | | | | | Remove the --install parameter when running aclocal. The --install argument is used to copy third-party files to the first -I directory. gnutls has -I m4 first, which would copy files to its local build directory. However, openwrt prepends the staging dir m4 directory, causing aclocal --install to copy an old definition of ax_code_coverage.m4 into the staging dir. If strace is built after gnutls, compilation will fail: Makefile:9303: *** missing separator. Stop. The version of ax_code_coverage.m4 that gets installed does not define @CODE_COVERAGE_RULES@. Removing the --install parameter in gnutls solves the issue. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* Revert "gnutls: update to 3.7.2"Stijn Tintel2021-08-05
| | | | | | Fixes #16083 This reverts commit 59a39d4c6fbe9c0179b16a714bf1a0c3afcbef5e.
* gnutls: update to 3.7.2Rosen Penev2021-06-01
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gnutls: update to version 3.7.1Jan Pavlinec2021-03-25
| | | | | | | | Fixes CVE-2021-20231 CVE-2021-20232 Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* gnutls: package libdaneDaniel Golle2021-01-03
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* gnutls: update to 3.7.0Rosen Penev2020-12-22
| | | | | | | | Added autoreconf to fix bad linking under Arch Linux. Added patch to fix compilation with autoreconf. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gnutls: update to version 3.6.15 (security fix)Jan Pavlinec2020-09-09
| | | | | | | Fixes: CVE-2020-24659 Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* gnutls: updated to 3.6.14Nikos Mavrogiannopoulos2020-06-04
| | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* gnutls: updated to 3.6.13Nikos Mavrogiannopoulos2020-03-31
| | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* gnutls: updated to 3.6.12Nikos Mavrogiannopoulos2020-02-02
| | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* gnutls: fixed pkg-hash to the right oneNikos Mavrogiannopoulos2019-12-02
| | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* gnutls: updated to 3.6.11Nikos Mavrogiannopoulos2019-12-02
| | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* treewide: Change .*GPL.*+ licenses to SPDX compatible identifierSven Eckelmann2019-09-10
| | | | | | | | The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL licenses. But a lot of packages did use a different, non-SPDX style with a "+" at the end instead of "-or-later". Signed-off-by: Sven Eckelmann <sven@narfation.org>
* gnutls: updated to 3.6.9Nikos Mavrogiannopoulos2019-08-02
| | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* gnutls: removed autogen patchNikos Mavrogiannopoulos2019-06-01
| | | | | | | It was causing regressions in systems without some particular development tools (see #8129) Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* gnutls: removed FIXUPNikos Mavrogiannopoulos2019-05-30
| | | | | | This addresses regression discussed in #8129 Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* gnutls: updated to 3.6.8Nikos Mavrogiannopoulos2019-05-29
| | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* gnutls: Update to 3.6.7Rosen Penev2019-03-27
| | | | | | | | | | | Cleaned up configure arguments (alphabetized and sorted) and added some new ones to help speed up compilation. Disabled SSL support by default. SSLv2 and 3 have long been deprecated as they are both insecure variants that currently hold less than 10% of total encrypted traffic on the web. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gnutls: updated to 3.6.5Nikos Mavrogiannopoulos2018-12-10
| | | | | | Compile tested for: ar71xx Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.5.19Nikos Mavrogiannopoulos2018-09-29
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: Add PKG_CPE_ID for proper CVE trackingRosen Penev2018-08-21
| | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gnutls: Use HTTPS instead of FTPRosen Penev2017-12-10
| | | | | | While recently building asterisk, the make system stalled on gnutls. On my install of Ubuntu 16.04 on WSL, it seems curl can't download from ftp and doesn't even time out properly. Easiest solution is to switch the gnutls Makefile to use HTTPS instead. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* gnutls: updated to 3.5.16Nikos Mavrogiannopoulos2017-10-21
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.5.13Nikos Mavrogiannopoulos2017-06-18
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.5.11Nikos Mavrogiannopoulos2017-05-08
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.5.9Nikos Mavrogiannopoulos2017-02-12
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* libs/gnutls: Don't link libidn unintentionallyDaniel Engberg2017-02-07
| | | | | Fixes compilation reported by by buildbots. Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* gnutls: updated to 3.5.8Nikos Mavrogiannopoulos2017-01-15
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.5.6Nikos Mavrogiannopoulos2016-11-04
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls-utils/certtool: move to Encryption submenuAlberto Bursi2016-10-24
| | | | | Part of a wider housekeeping effort on the packages repository. Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
* gnutls: remove C99 constructions rejected by compilerNikos Mavrogiannopoulos2016-09-27
|
* gnutls: optionally disable tpm supportIan Pozella2016-09-15
| | | | | | | | | Add option that allows you to explicitly disable use of the tpm otherwise if a tss stack such as trousers is found by gnutls build system then it will use it which will cause a build failure when PKCS11 support is not enabled. Signed-off-by: Ian Pozella <Ian.Pozella@imgtec.com>
* gnutls: updated to 3.5.4Nikos Mavrogiannopoulos2016-09-08
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.4.14Nikos Mavrogiannopoulos2016-07-06
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.4.13Nikos Mavrogiannopoulos2016-06-12
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.4.12Nikos Mavrogiannopoulos2016-05-22
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.4.11Nikos Mavrogiannopoulos2016-04-25
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* gnutls: updated to 3.4.10Nikos Mavrogiannopoulos2016-03-05
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>