Commit Graph

4532 Commits

Author SHA1 Message Date
Rosen Penev 932f00edbd libev: update to 4.33
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-11-05 15:41:13 -07:00
Alexandru Ardelean 443bf87dc8 openblas: default to MIPS24K target for all mips32 targets
Reported via:
  https://github.com/openwrt/packages/pull/16823#issuecomment-945312460

This fails in mips_mip32 targets with the output listed below.

Using the MIPS24K target works fine.

```
mips-openwrt-linux-musl-gcc -c -Os -pipe -mno-branch-likely -mips32 -mtune=mips32 -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -msoft-float -ffile-prefix-map=/builder/shared-workdir/build/sdk/build_dir/target-mips_mips32_musl/OpenBLAS-0.3.18=OpenBLAS-0.3.18 -Wformat -Werror=format-security -fstack-protector -D_FORTIFY_SOURCE=1 -Wl,-z,now -Wl,-z,relro  -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips_mips32_gcc-11.2.0_musl/usr/include -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips_mips32_gcc-11.2.0_musl/include/fortify -I/builder/shared-workdir/build/sdk/staging_dir/toolchain-mips_mips32_gcc-11.2.0_musl/include   -DMAX_STACK_ALLOC=2048 -Wall -mabi=32 -DF_INTERFACE_GFORT -fPIC -DNO_LAPACK -DNO_LAPACKE -DNO_AVX512 -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=2 -DMAX_PARALLEL_NUMBER=1 -DBUILD_SINGLE=1 -DBUILD_DOUBLE=1 -DBUILD_COMPLEX=1 -DBUILD_COMPLEX16=1 -DVERSION=\"0.3.18\" -UASMNAME -UASMFNAME -UNAME -UCNAME -UCHAR_NAME -UCHAR_CNAME -DASMNAME= -DASMFNAME=_ -DNAME=_ -DCNAME= -DCHAR_NAME=\"_\" -DCHAR_CNAME=\"\" -DNO_AFFINITY -I.  -DMAX_STACK_ALLOC=2048 -Wall -mabi=32 -DF_INTERFACE_GFORT -fPIC -DNO_LAPACK -DNO_LAPACKE -DNO_AVX512 -DSMP_SERVER -DNO_WARMUP -DMAX_CPU_NUMBER=2 -DMAX_PARALLEL_NUMBER=1 -DBUILD_SINGLE=1 -DBUILD_DOUBLE=1 -DBUILD_COMPLEX=1 -DBUILD_COMPLEX16=1 -DVERSION=\"0.3.18\" -UASMNAME -UASMFNAME -UNAME -UCNAME -UCHAR_NAME -UCHAR_CNAME -DASMNAME=sgemm -DASMFNAME=sgemm_ -DNAME=sgemm_ -DCNAME=sgemm -DCHAR_NAME=\"sgemm_\" -DCHAR_CNAME=\"sgemm\" -DNO_AFFINITY -I.. -I. -UDOUBLE  -UCOMPLEX gemm.c -o sgemm.o
In file included from ../common.h:581,
                 from gemm.c:41:
gemm.c: In function 'sgemm_':
../param.h:3477:25: error: 'sgemm_p' undeclared (first use in this function); did you mean 'sgemm_'?
 3477 | #define SGEMM_DEFAULT_P sgemm_p
      |                         ^~~~~~~
../common_param.h:1334:25: note: in expansion of macro 'SGEMM_DEFAULT_P'
 1334 | #define SGEMM_P         SGEMM_DEFAULT_P
      |                         ^~~~~~~~~~~~~~~
../common_param.h:1482:33: note: in expansion of macro 'SGEMM_P'
 1482 | #define GEMM_P                  SGEMM_P
      |                                 ^~~~~~~
gemm.c:494:37: note: in expansion of macro 'GEMM_P'
  494 |   sb = (XFLOAT *)(((BLASLONG)sa + ((GEMM_P * GEMM_Q * COMPSIZE * SIZE + GEMM_ALIGN) & ~GEMM_ALIGN)) + GEMM_OFFSET_B);
      |                                     ^~~~~~
../param.h:3477:25: note: each undeclared identifier is reported only once for each function it appears in
 3477 | #define SGEMM_DEFAULT_P sgemm_p
      |                         ^~~~~~~
../common_param.h:1334:25: note: in expansion of macro 'SGEMM_DEFAULT_P'
 1334 | #define SGEMM_P         SGEMM_DEFAULT_P
      |                         ^~~~~~~~~~~~~~~
../common_param.h:1482:33: note: in expansion of macro 'SGEMM_P'
 1482 | #define GEMM_P                  SGEMM_P
      |                                 ^~~~~~~
gemm.c:494:37: note: in expansion of macro 'GEMM_P'
  494 |   sb = (XFLOAT *)(((BLASLONG)sa + ((GEMM_P * GEMM_Q * COMPSIZE * SIZE + GEMM_ALIGN) & ~GEMM_ALIGN)) + GEMM_OFFSET_B);
      |                                     ^~~~~~
make[5]: *** [Makefile:1295: sgemm.o] Error 1
make[5]: Leaving directory '/builder/shared-workdir/
```

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-11-05 14:01:48 +02:00
Eneas U de Queiroz 6bc9ec549d
liburing: add KERNEL_IO_URING dependency
This needs kernel io_uring support to work.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2021-11-04 15:12:58 -03:00
Eneas U de Queiroz 206eaae165
gnutls: don't run aclocal --install
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>
2021-11-03 13:34:16 -03:00
Michel Promonet c3c2d23598 multimedia: add v4l2tools & v4l2loopback
Signed-off-by: Michel Promonet <michel.promonet@free.fr>
2021-11-03 08:13:33 -07:00
Hirokazu MORIKAWA aa5a0ccb7d icu: bump to 70.1
ICU 70 released. It updates to Unicode 14, including new characters, scripts, emoji, and corresponding API constants. ICU 70 adds support for emoji properties of strings. It also updates to CLDR 40 locale data with many additions and corrections. ICU 70 also includes many other bug fixes and enhancements, especially for measurement unit formatting, and it can now be built and used with C++20 compilers.

This change will require minor modifications in php7 and php8.

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2021-11-02 09:14:00 +09:00
Rosen Penev ac5912e9cb remove a bunch of rpath hacks
These are already default.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-28 20:21:56 -07:00
Rosen Penev a1f1303ae3 lib4cplus: update to 2.0.7
Switch to static lib. Avoids rpath hacks.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-28 17:31:06 -07:00
Martin Schneider 4fde0fdad5 boringssl: Add boringssl library
Add boringssl library. BoringSSL is Google's fork of OpenSSL.
Amongst other features, it adds support for QUIC.

Signed-off-by: Martin Schneider <martschneider@google.com>
2021-10-27 18:09:24 -07:00
Jan Pavlinec 766a5b285e redis: update to version 6.2.6
Fixes:
- CVE-2021-41099
- CVE-2021-32762
- CVE-2021-32687
- CVE-2021-32675
- CVE-2021-32672
- CVE-2021-32628
- CVE-2021-32627
- CVE-2021-32626

Signed-off-by: Jan Pavlinec <jan.pavlinec1@gmail.com>
2021-10-25 08:34:57 -07:00
Rosen Penev dc701d61b9 libxml2: don't build host shared libraries
Avoids having to add

HOST_LDFLAGS: -Wl,-rpath,$(STAGING_DIR_HOSTPKG)/lib

for packages that rely on shared libraries.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-23 17:03:12 -07:00
Nikos Mavrogiannopoulos 91c1b3d18d
Merge pull request #16949 from neheb/10
libtasn1: don't build host shared libs
2021-10-23 20:31:06 +02:00
Rosen Penev 2b36a1b59f libnpupnp: update to 4.1.5
Add libmicrohttpd to PKG_BUILD_DEPENDS as it doesn't get added for some
reason.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-22 22:59:24 -07:00
Rosen Penev d2062486e8 glib2: update to 2.70
Remove various outdated patches. No more uClibc and distutils is a
requirement.

Compile host libraries statically. Size is not a concern there. Also
avoids rpath hacks. Disable NLS as well. Avoids gettext dependencies.

Add libpcre dependency. Seems to be a requirement now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-22 18:33:03 -07:00
Rosen Penev aba4a294ba libffi: don't build host shared libs
Avoids rpath hacks.

Add --with-pic. Needed for static library.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-22 18:07:53 -07:00
Rosen Penev c0aac5adab libtasn1: don't build host shared libs
Avoids rpath hacks.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-21 14:45:32 -07:00
Rosen Penev 89c2971c6e protobuf-c: don't build shared host library
No point and can avoid rpath hacks.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-21 14:38:53 -07:00
Rosen Penev c2fc267476 poco: switch to building with cmake
Faster and works with mips64 targets.

Removed all options as the defaults are updated. Added new dependencies.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-21 13:35:20 -07:00
Rosen Penev 5bf74f2ad4 expat: don't build host libs
tools/expat is actually what's used by the various packages that
supposedly depend on expat/host.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-19 13:16:18 -07:00
Tianling Shen e4d463b89d msgpack-c: Update to 4.0.0
- Fixed typo error in PKG_LICENSE_FILES.
- Updated CMAKE_OPTIONS.
- Refreshed the patch.

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2021-10-14 16:22:34 -07:00
Eneas U de Queiroz 307f36834a oniguruma: bump to 6.9.7.1
Changelog:

*  NEW API: ONIG_OPTION_CALLBACK_EACH_MATCH
*  NEW API: ONIG_OPTION_IGNORECASE_IS_ASCII
*  NEW API: ONIG_SYNTAX_PYTHON
*  Fixed some problems found by OSS-Fuzz
*  fix: replace UChar to OnigUChar in oniguruma.h

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2021-10-11 19:56:05 -07:00
Daniel Golle e852f509cf
libinput: update to version 1.19.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-10-09 17:02:58 +01:00
Daniel Golle 36b9ff3c83
libudev-zero: update to version 1.0.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-10-09 17:02:53 +01:00
Daniel Golle 30dabb07ae
postgresql: update to version 14.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-10-09 17:02:37 +01:00
Damiano Renfer 7c529bab91 libsodium: update maintainer email address
Signed-off-by: Damiano Renfer <x9w2n7xnu@relay.firefox.com>
2021-10-09 09:50:35 -04:00
Daniel Golle 3da874371b
libsodium: include ed25519_core in minimal build
Functions from ed25519_core are needed for GNUnet to build.
Include them in the minimal build of libsodium so we don't need to
switch to the full build just for that.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-10-09 01:28:56 +01:00
Rosen Penev 0ce3a961d3 hiredis: fix compilation with macOS
uname is used to test the host OS. Override it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-08 09:46:38 -07:00
Alexandru Ardelean 0dd482ff5b
Merge pull request #16823 from cotequeiroz/openblas-mips
openblas: fix compilation with mips x4k series CPU
2021-10-07 10:20:14 +03:00
Daniel Golle 45951a9fc8
libdrm: update to version 2.4.107
Change to select features by default.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-10-07 00:20:31 +01:00
Eneas U de Queiroz bf99bfbadb
openblas: avoid using make -j when building
Set MAKE_NB_JOBS=-1 so that no -j parameter is passed to make when
building the package, honoring the parent make's setting.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2021-10-06 17:09:10 -03:00
Eneas U de Queiroz 7ff29af4fd
openblas: fix compilation with mips x4k series CPU
Anything later than MIPS 24k can run MIPS 24k code.  Set OPENBLAS_TARGET
to MIPS24K in those cases.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2021-10-06 15:29:47 -03:00
Rosen Penev 6713d9e662 libdnet: fix compilation under macOS
configure checks the host system not the target one. Override these
variables.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-05 17:33:14 -07:00
Alexandru Ardelean 1e22ca7ce1 openblas: bump to 0.3.18
Drops patch, which was upstreamed.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-10-04 08:46:11 -07:00
Alexandru Ardelean 401291ba7e libwebp: fix webpmux lib name for cmake linking
When using CMake the `<prefix>/usr/share/WebP/cmake/WebPConfig.cmake` gets
used to get the names of the libraries to link against.

Since version 1.2.1 of libwebp, libwebpmux is on by default.
This causes a linker error because the linker arg should be `-lwebpmux`
instead of `-llibwebpmux`.

This is easily fixable by correcting the generation of the WebPConfig.cmake
file to append `webpmux` when this lib is enabled.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-10-02 19:55:07 +01:00
Rosen Penev 3bddf93d3a libfido2: update to 1.8.0
Switch to AUTORELEASE for simplicity.

Remove no longer necessary warning fixes.

Add now needed zlib dependency.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-10-01 16:36:33 -07:00
Alexandru Ardelean 17126e8174 libs: libwebp: bump to 1.2.1 & assign myself as maintainer
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-09-30 14:29:13 -07:00
Alexandru Ardelean 437b52d08c
Merge pull request #16746 from neheb/secc2
libseccomp: update to 2.5.2
2021-09-28 18:48:36 +03:00
Rosen Penev 537f743c49 libarchive: update to 3.5.2
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-27 11:07:15 -07:00
Rosen Penev 17d2f61c7b libseccomp: update to 2.5.2
Use AUTORELEASE for simplicity.

Add libtool patch to fix compilation under some platforms.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 22:35:50 -07:00
Rosen Penev cc473dd810 hidapi: update to 0.10.1
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:34:13 -07:00
Rosen Penev feaf38de41 libconfig: update to 1.7.3
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:33:25 -07:00
Rosen Penev 6775faf905 libfstrm: update to 0.6.1
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:33:03 -07:00
Rosen Penev a6105d1c53 nlohmannjson: update to 3.10.2
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:31:24 -07:00
Rosen Penev 35fabec128 minizip: update to 3.0.3
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:31:07 -07:00
Rosen Penev 0c3ee90b07 protobuf: update to 3.17.3
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:30:52 -07:00
Rosen Penev bb4649f168 libcoap: update to 4.3.0
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-26 19:30:33 -07:00
Alexandru Ardelean d009987c64 libs: openblas: use GENERIC for MIPS{EL} and MIPS24K for CPU_TYPE == 24kc
Up until now, we were defaulting to MIPS24K for all MIPS archs.
But, we should use the GENERIC target for MIPS{EL} and the MIPS24K target
for the 24kc CPU_TYPE.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-09-26 18:08:20 -07:00
Alexandru Ardelean 4c5a05cd63 libs: openblas: patch openblas to handle mips{64}el arch names
Related to PR: https://github.com/xianyi/OpenBLAS/pull/3387

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-09-26 18:08:20 -07:00
Alexandru Ardelean 9b94996370 libs: openblas: use GENERIC target for MIPS64 archs and as default
The GENERIC target for OpenBLAS seems good enough for most configs, so try
to use it for MIPS64 and as default for other archs.
This was already being used for x86{_64} archs.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-09-26 18:08:20 -07:00
Rosen Penev 2fdd8dbcb1 freetype: update to 2.11.0
Remove upstreamed patches.

Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 11:05:11 -07:00
Rosen Penev 0c4325fb0b libgcrypt: update to 1.9.4
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 11:04:51 -07:00
Rosen Penev 0eae8ee969 libexif: update to 0.6.23
Switch to AUTORELEASE for simplicity.

Fix license information.

Add PKG_BUILD_PARALLEL for faster compilation.

Fixes CVE-2020-0198 and CVE-2020-0452.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 11:04:33 -07:00
Rosen Penev 649ec6cc1b libdrm: update to 2.4.107
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 02:48:31 -07:00
Rosen Penev 0d4133a328 gdbm: update to 1.21
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-25 01:19:36 -07:00
Rosen Penev 0ed3e8f373 libuwsc: fix compilation with GCC11
Bad if identation is now an error.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-24 21:05:44 -07:00
Rosen Penev 34b06f3837 dtc: switch to compiling with meson
Faster and more parallel friendly.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-22 20:43:01 +08:00
Kuan-Yi Li 88895e362b libqmi: bump to 1.30.2
Signed-off-by: Kuan-Yi Li <kyli@abysm.org>
2021-09-20 21:52:00 +08:00
Rosen Penev 5ccd4d1c25 treewide: compile with tools/meson
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-17 22:06:52 -07:00
Christian Lachner 6e9c9bff05 liburing: Update to v2.1
- Updated download URL and hash
- Make use of $(AUTORELEASE) for PKG_RELEASE

Signed-off-by: Christian Lachner <gladiac@gmail.com>
2021-09-12 10:59:37 -07:00
Lucian Cristian 05d9d7ae21 nss: update to 3.69
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2021-09-12 10:58:16 -07:00
Lucian Cristian 6e089aadbe nspr: update to 4.32
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2021-09-12 10:58:00 -07:00
Carlos Miguel Ferreira f2280ae82e boost: Fixes Boost.Math build for arm_xscale
This commit adds a new patch which fixes build issue with Boost.Math.
Issue is described in upstream PR boostorg/math#684 [1]

[1]: https://github.com/boostorg/math/pull/684

Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
2021-09-08 18:32:31 -07:00
Rosen Penev 21e5a1e7d3 libuhttp: don't build examples
Speeds up compilation and potentially fixes it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-08 17:44:02 -04:00
Rosen Penev 4084252cbd libzip: fix compilation without SSL
Linker error. No idea why.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-05 21:00:04 -07:00
Rosen Penev 19fcff0910 libtorrent-rasterbar: update to 2.0.4
Backport patch fixing compilation with boost 1.77

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-04 20:35:07 -07:00
Carlos Miguel Ferreira 1953240085
boost: Bump to version 1.77.0
This commit updates boost to version 1.77.0
More info about Boost 1.77.0 can be found at the usual place [1].

There are two new libraries in this version:
* Describe [2]: A C++14 reflection library, from Peter Dimov. Provides
macros for describing enumerators and struct/class members, and
primitives for querying this information.
* Lambda2 [3]: A C++14, dependency-free, single header lambda library, from
Peter Dimov. Allows simple function objects to be constructed via
expressions such as:
_1 + 5, _1 % 2 == 0, _1 > _2, or _1 == ' ' || _1 == '\t'.

[1]: https://www.boost.org/users/history/version_1_77_0.html
[2]: https://www.boost.org/libs/describe/
[3]: https://www.boost.org/libs/lambda2/

Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
2021-09-02 02:12:19 +01:00
Sebastian Kemper 95023a15cc json-glib: bump to version 1.6.6
This also drops 01-remove-python-check.patch, which was added previously
to allow Github Actions to work.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2021-08-29 10:12:20 -07:00
Rosen Penev 3d47fd637c glib2: update to 2.68.4
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-08-27 16:38:30 -07:00
Michal Vasilek ec4ce2a0c8
libssh: update to 0.9.6
* fixes CVE-2021-3634

Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
2021-08-27 09:51:19 +02:00
Karl Palsson 689dabd8de libwebsockets: enable external poll support
This was removed and then re-added, but defaulted off upstream.  It's
still listed as "not recommended" but still absolutely essential for
many apps for performance.

Fixes: https://github.com/eclipse/mosquitto/issues/2284

Signed-off-by: Karl Palsson <karlp@etactica.com>
2021-08-25 10:10:55 +00:00
Rosen Penev c02d128035
Merge pull request #16422 from neheb/g19
gerbera: update to 1.9.0
2021-08-25 00:57:54 -07:00
Rosen Penev f890882752 spdlog: update to 1.9.2
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-08-24 19:16:04 -07:00
Rosen Penev 2eb27f73ee
Merge pull request #16374 from neheb/pocc
poco: update to 1.11.0
2021-08-24 19:12:00 -07:00
Rosen Penev 26b51234c8
Merge pull request #16440 from paper42/apr-cve-master
apr: patch CVE-2021-35940
2021-08-23 12:16:49 -07:00
Stijn Tintel 9dc0fd7c14 v4l-utils: add libudev-zero dependency
When libudev-zero is enabled, v4l-utils links against it, and the
package build fails due to a missing dependency:

Package v4l-utils is missing dependencies for the following libraries:
libudev.so.1

As disabling udev doesn't seem to be supported in v4l-utils, simply add
the dependency to fix the build.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2021-08-23 17:18:08 +03:00
Michal Vasilek 0777e40b74
apr: patch CVE-2021-35940
Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
2021-08-23 15:38:23 +02:00
Nicholas Smith 80b47a11b1 libmbim: switch to autorelease
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 16:12:20 +10:00
Nicholas Smith daeb94469b libqmi: switch to autorelease
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 16:12:08 +10:00
Nicholas Smith 46e6cb7d15 libmbim: bump to 1.26.0
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 15:50:14 +10:00
Nicholas Smith 4e67af0cc1 libqmi: bump to 1.28.8
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 15:49:41 +10:00
Daniel Golle f53cd4232a
libinput: package libinput cli applets and quriks
Also package /usr/libexec/libinput/* and /usr/share/lib/input/*.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-08-21 18:40:34 +01:00
Petr Štetiar 84058b3980 c-ares: update to version 1.17.2
Missing input validation of host names returned by Domain Name Servers
in the c-ares library can lead to output of wrong hostnames (leading to
Domain Hijacking).

The Common Vulnerabilities and Exposures (CVE) project has assigned the
name CVE-2021-3672 to this issue.

References: https://c-ares.haxx.se/adv_20210810.html
Signed-off-by: Petr Štetiar <ynezz@true.cz>
2021-08-20 10:33:33 +00:00
Ronny Kotzschmar 35876858d1 libwebsockets: avoid a compilation error due to a missing uloop
With a clean build environment and at least two parallel jobs
a compilation error may occur:

...
-- Looking for uv/version.h - found
libubox include dir: ULOOP_INCLUDE_DIRS-NOTFOUND
libubox libraries: ULOOP_LIBRARIES-NOTFOUND
...
CMake Error in lib/event-libs/uloop/CMakeLists.txt:
  Found relative path while evaluating include directories of
  "websockets-evlib_uloop":

    "ULOOP_INCLUDE_DIRS-NOTFOUND"
...

Signed-off-by: Ronny Kotzschmar <ro.ok@me.com>
2021-08-20 10:31:49 +00:00
Rosen Penev e750b50fc8
Merge pull request #16375 from neheb/jpgg
libjpeg-turbo: update to 2.1.1
2021-08-16 14:46:09 -07:00
Daniel Golle 3f846f9242
postgresql: update to version 13.4
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-08-16 14:34:51 +01:00
Alexandru Ardelean 975f2c77bd
Merge pull request #16301 from stintel/libffi
libffi: bump to 3.4.2
2021-08-16 09:52:50 +03:00
Rosen Penev e2a76c2cfe libjpeg-turbo: update to 2.1.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-08-15 18:27:52 -07:00
Rosen Penev ed6781bef1 poco: update to 1.11.0
Refresh patches and fix strerror one. uClibc also defines __GLIBC__.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-08-15 18:26:23 -07:00
Rosen Penev 51f9a12a54
Merge pull request #16326 from cotequeiroz/install_host
perlmod.mk, unixodbc: use 'install' instead of 'cp' to install host binaries to avoid "Text file busy" error.
2021-08-14 13:42:09 -07:00
Daniel Golle f518cfb250
postgresql: improve init script
Use newly introduced procd_add_restart_mount_trigger to make sure
postmaster gets started only once PGDATA becomes available.
Relocate socket directory to /var/lib/postgresql to make it possible
to run postgresql inside a ujail.
Use signal for shutdown, so it works nicely with jail.
Allow multiple script in UCI 'config postgres-db' to be a list and
run them in order listed.
User more silent methods to check for db or role existence and make
it easy to create several databases owned by the same user by passing
the same credentials multiple times.
Remove disfunctional reload handler.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-08-12 03:11:09 +01:00
Eneas U de Queiroz 47f98d7030
unixodbc: use 'install' when copying host binaries
'cp' fails with a text file busy error if it tries to overwrite an
executable file that is running.  'install' unlinks the file first, so
it will not cause the problem.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2021-08-11 16:59:20 -03:00
Jan Pavlinec 3cc8a1f37e
redis: update to version 6.2.5
Fixes CVE-2021-32761

Signed-off-by: Jan Pavlinec <jan.pavlinec1@gmail.com>
2021-08-11 08:43:27 +02:00
Hans Dedecker 6bffc5f5c9 nghttp2: update to 1.44
368014b8 Bump version number to v1.44.0, LT revision to 34:2:20
fa16e66a nghttpx: Fix max distance in weight group/address cycle comparison
40af31da nghttpx: Set connect_blocker and live_check after shuffling addresses
9e6c0685 Fix build failure
ebad3d47 Port new ngtcp2 map implementation
d4fd0681 Bump llhttp to 6.0.2
43a47aa0 Do not return HPE_USER from where it is prohibited
20079b4c Update bash_completions
2aeec770 Update manual pages
cef458c3 Replace black-list with block-list
617a5766 Replace master with main
f1d67335 Initialize Config rps field
5f3bcb1f Add precious variables for libev and jemalloc and use JEMALLOC_CFLAGS
b419bfd9 Remove unused field
e406a2c1 Update doc
962a75c4 Merge pull request #1559 from nghttp2/h2load-rps
6cdc13d6 h2load: Add --rps option
92944f78 h2load: Allow unit in -D option
276792a8 Remove unnecessary function
579fa6ea Add more --with-* configure flags
2f2b2117 Add LIBTOOL_LDFLAGS configure variable
88a3cb51 Bump llhttp to 4.0.0
40679cf6 Merge pull request #1553 from nghttp2/nghttpx-fix-accesslog-method
5b587e85 Merge pull request #1550 from jktjkt/docs-asio-fix-typos
50a1121d nghttpx: Remove trailing white space after $method log variable
3239c5ef Bump up version number to v1.44.0-DEV

Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
2021-08-08 21:40:15 +02:00
Rosen Penev a23de0330b
Merge pull request #16293 from Linaro1985/master_fix_libxslt
libxslt: fix compilation because of wrong libxml2 check in configure script
2021-08-07 16:43:45 -07:00
Stijn Tintel 3e9d7d2afe libffi: bump to 3.4.2
Remove both patches as they have been upstreamed.
This new release is only available on Github and does not ship configure
or Makefile, so autoreconf is needed.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2021-08-07 13:43:55 +03:00
Stijn Tintel 3d4e6b0514 Revert "gnutls: update to 3.7.2"
Fixes #16083

This reverts commit 59a39d4c6f.
2021-08-05 22:37:05 +03:00
Maxim Anisimov b5ac497d66 libxslt: fix compilation because of wrong libxml2 check in configure script
More details: 90c34c8bb9

Signed-off-by: Maxim Anisimov <maxim.anisimov.ua@gmail.com>
2021-08-05 09:14:07 +03:00
Rosen Penev a7db7a5023
Merge pull request #16260 from dhewg/libopusenc
libopusenc: cherry-pick post-release crash fixes
2021-08-03 12:20:12 -07:00
Karl Palsson 1557ac367a libwebsockets: enable built in uloop support
uloop is always available on OpenWrt, so build in LWS's uloop support by
default. Size difference of .ipk is 683 bytes, or about 0.5%.
No known applications use this at present, but it seems better to
proactively offer it.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2021-08-03 17:29:16 +00:00
Karl Palsson 0e186bd511 libwebsockets: Bump to 4.2.1
Changelog at: https://libwebsockets.org/git/libwebsockets/tree/changelog?id=8a580b59b23d204ca72028370e97a8f6aa0c9202

Signed-off-by: Karl Palsson <karlp@etactica.com>
2021-08-03 17:29:16 +00:00
W. Michael Petullo a4008e33f5 cyrus-sasl: add optional sasldb package
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-08-02 12:35:48 -05:00
Alexandru Ardelean 2067eab84c openblas: bump to version 0.3.17 and fix ccache build
Fixes: https://github.com/openwrt/packages/issues/16271

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-08-02 15:10:55 +02:00
Daniel Golle 1b85a30731
postgresql: update to version 13.3
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-08-01 04:15:12 +01:00
Daniel Golle 112e5628f4
libinput: update to version 1.18.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-08-01 04:15:03 +01:00
Daniel Golle 50bb46baaa
libudev-zero: update to version 0.5.2
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-08-01 04:14:57 +01:00
Daniel Golle e0e5dea89e
gpgme: update to version 1.16.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-08-01 04:14:52 +01:00
Daniel Golle 0876a981c2
libksba: update to version 1.6.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-08-01 04:14:47 +01:00
Andre Heider 7200d1386c libopusenc: cherry-pick post-release crash fixes
Fixes crashes like:
daemon.err asterisk[5087]: Assertion failed: enc->streams == NULL (src/opusenc.c: ope_encoder_drain: 839)

Signed-off-by: Andre Heider <a.heider@gmail.com>
2021-07-31 13:38:28 +02:00
Rosen Penev 11b8e17c9a
Merge pull request #16180 from neheb/Al
alsa stuff: update to 12..5.1
2021-07-29 12:40:34 -07:00
Rosen Penev a6cf96588c
Merge pull request #16186 from neheb/Ya
libyaml-cpp: update to 0.7.0
2021-07-29 12:39:37 -07:00
Rosen Penev 181bb8493a
Merge pull request #16183 from neheb/Pc
pcre2: update to 10.37
2021-07-29 12:39:19 -07:00
Rosen Penev 5ad6bb0a01
Merge pull request #16078 from ja-pa/fix-email
treewide: change email address in PKG_MAINTAINER
2021-07-29 12:37:06 -07:00
Jan Pavlinec 3ee2a087a3
treewide: change email
Change from jan.pavlinec@nic.cz to jan.pavlinec1@gmail.com

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-07-29 13:21:02 +02:00
Rosen Penev 038f890bca
Merge pull request #15685 from commodo/openblas
openblas: add initial package
2021-07-27 00:59:23 -07:00
Rosen Penev 2e0b72910a
Merge pull request #16225 from lnslbrty/update/libndpi-4.0
libndpi: update to 4.0
2021-07-26 20:38:12 -07:00
Toni Uhlig de119e010e
libndpi: update to 4.0
- libmaxminddb config option

Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
2021-07-27 01:40:06 +02:00
Alexandru Ardelean 9cbf548649 openblas: add initial package
Initial draft PR is:
  https://github.com/openwrt/packages/pull/11894

This one is a bit more complete, and follows packaging practices.

For now, disabling builds on ARC and PowerPC. Will require more work to get
them going.
Explicitly disabling OpenMP support, so that it doesn't get picked by
accident.

Later we may use the `CPU_TYPE` parameter to tweak things a little further.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-07-26 10:27:44 +03:00
Rosen Penev b305e880d8
Merge pull request #16202 from neheb/rout
librouteros: don't build docs
2021-07-25 11:16:02 -07:00
Javier Marcet 44158274de alsa-lib: install also /usr/share/alsa/ctl or alsa-mixer fails with:
❯ alsamixer
ALSA lib conf.c:827:(get_char_skip_comments) Cannot access file /usr/share/alsa/ctl/default.conf
ALSA lib conf.c:1994:(_snd_config_load_with_include) _toplevel_:61:26:No such file or directory
ALSA lib conf.c:4040:(config_file_open) /usr/share/alsa/cards/aliases.conf may be old or corrupted: consider to remove or fix it
ALSA lib conf.c:3962:(snd_config_hooks_call) function snd_config_hook_load returned error: No such file or directory
ALSA lib control.c:1481:(snd_ctl_open_noupdate) Invalid CTL cards.ctl.default
cannot open mixer: No such file or directory

Signed-off-by: Javier Marcet <javier@marcet.info>
2021-07-23 17:15:34 +00:00
Rosen Penev e41fd1794b librouteros: don't build docs
Fixes compilation without host pod2man.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-22 16:32:00 -07:00
Nikos Mavrogiannopoulos 743aafbeda
Merge pull request #16185 from neheb/P1
p11-kit: update to 0.24.0
2021-07-22 20:19:33 +02:00
Rosen Penev 0135933a0d libyaml-cpp: update to 0.7.0
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-21 00:21:07 -07:00
Rosen Penev 5f78f5f8de p11-kit: update to 0.24.0
Switch to AUTORELEASE for simplicity.

Remove upstreamed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-21 00:20:35 -07:00
Rosen Penev c385d03879 libvpx: update to 1.10.0
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-21 00:19:51 -07:00
Rosen Penev 9bdb8cca65 pcre2: update to 10.37
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-21 00:18:59 -07:00
Rosen Penev ef00d8e755 alsa-ucm-conf: update to 12.5.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-21 00:16:36 -07:00
Rosen Penev e658dcfd86 alsa-lib: update to 12.5.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-21 00:16:36 -07:00
Martin Schiller 39fd6151e9 libs: file: magic: remove "u" from pattern
This backports an upstream fix for the following warning:

Warning: Unparsable number `xu                    \b, dcrypt version %d'

Signed-off-by: Martin Schiller <ms@dev.tdt.de>
2021-07-20 11:25:51 +02:00
Rosen Penev 66f7c21d4e
Merge pull request #16074 from neheb/nss3
nss: disable parallel compilation
2021-07-18 00:15:05 -07:00
Rosen Penev 8e35ba8860 boost: fix compilation error under SPARC
Missing braces.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-14 19:08:47 -07:00
Jakov Petrina e4be8d12aa uci2: bump to revision v1.0-5606418
Pull in latest API changes from upstream.

Signed-off-by: Jakov Petrina <jakov.petrina@sartura.hr>
2021-07-14 13:30:34 +02:00
Rosen Penev db0ec36ce3
Merge pull request #16115 from haraldg/elektra_0.9.7
elektra: update to 0.9.7
2021-07-13 19:13:56 -07:00
Harald Geyer 21abcc2968 elektra: update to 0.9.7
Notable changes:
* Use toml as new default storage backend:
  Upstream has removed the ini plugin, we have been using in the
  past. toml is still somewhat experimental, but upstream has
  designated it as future recommended default.
* Remove the dependency on boost. The only plugin needing that has
  been removed upstram.
* Enable plugins for libev and libuv event loop integration. This
  adds two new packages with the respective dependencies.
  Upstream has fixed the bugs preventing us from using this.
* Enable the internal notification plugin/system. This allows
  applications to automatically receive notifications about changes
  to their configuration. Again upstream fixing bugs enables this
  for us.
* Set the environment variable $XDG_CACHE_HOME to "/tmp/" globally
  to prevent elektra (and possibly other applications) from
  writing temporary data to flash.

Signed-off-by: Harald Geyer <harald@ccbib.org>
2021-07-13 23:45:43 +02:00
Alexandru Ardelean efde2462c6 libs: gdbm: enable/install Berkley DBM compat layer
Python supports both GNU dbm and Berkley DBM.
GNU dbm also has a compatibility layer for Berkeley.

The current Berkley DB in OpenWrt is 4.7 and hasn't been updated in ages.
It's also pretty big.

So, an alternative for Python is to use GNU dbm for both (GNU and Berkley).

Also, removing static shared libraries from the build, to encourage the
usage of the shared ones.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-07-13 11:22:32 +03:00
Hirokazu MORIKAWA a374b76f9e libuv: bump to 1.41.1
Update to 1.41.1
 include fix CVE-2021-22918

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2021-07-12 14:20:33 +09:00
Rosen Penev 1b9e204700 nss: update to 3.67
Switch to AUTORELEASE for simplicity.

Disable parallel compilation as there's something wrong with NSS' build
system. Reliably fails with make -j 12 on a ryzen 3600.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-11 00:35:18 -07:00
Rosen Penev e3b89b6f5d ibrcommon: fix compilation with GCC11
GCC11 defaults to C++17, which does not allow throw specifiers.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-11 00:24:21 -07:00
Rosen Penev f2313569b6 ibrdtn: fix compilation with GCC11
GCC11 defaults to C++17, which does now allow specifying throw().

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-11 00:23:55 -07:00
Rosen Penev c14c85fbc7 dtc: update to 1.6.1
Fixes compilation with GCC11.

Reorganized Makefile variables for consistency between packages.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-08 12:05:50 +08:00
Rosen Penev 8923becfcc
Merge pull request #16075 from neheb/ebml
libebml: fix compilation with GCC11
2021-07-07 16:59:37 -07:00
Rosen Penev 62d7bb5aba libebml: fix compilation with GCC11
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-07 14:55:26 -07:00
Rosen Penev 92e08f83e5 libelektra: fix compilation with GCC11
Missing header.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-07 14:49:57 -07:00
Hirokazu MORIKAWA ed818a9fdb libupm: Workaround for errors with GCC11
https://github.com/openwrt/packages/issues/16060

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2021-07-07 18:25:48 +09:00
Rosen Penev 497a1c52c3
Merge pull request #16044 from tru7/libfmt
libfmt: bump to version 8.0.1
2021-07-07 00:28:33 -07:00
Rosen Penev a6517cf5f2
Merge pull request #16049 from nxhack/libuv_CVE-2021-22918
libuv: fix CVE-2021-22918
2021-07-06 23:02:13 -07:00
Sebastian Kemper 9ba7d16a1e postgresql: prevent addition of ARM target flag
configure.in checks for "ARMv8 CRC32C intrinsics" and goes as far as
adding "-march=armv8-a+crc" to the target flags if the compiler allows
it. This can clash with the OpenWrt target flags in
CONFIG_TARGET_OPTIMIZATION. If for example the latter is set to
"-mcpu=cortex-a9" the following warning is issued:

  cc1: warning: switch '-mcpu=cortex-a9' conflicts with '-march=armv5t' switch

This commit prevents configure.in from adding the mentioned flag. The
addition is unwanted when cross-compiling.

An issue was raised for this recently, see [1].

[1] https://github.com/openwrt/packages/issues/16034

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2021-07-07 01:12:53 +01:00
Hirokazu MORIKAWA aaa46eb44e libuv: fix CVE-2021-22918
idna: fix OOB read in punycode decoder

libuv was vulnerable to out-of-bounds reads in the uv__idna_toascii()
function which is used to convert strings to ASCII. This is called by
the DNS resolution function and can lead to information disclosures or
crashes.

b7466e31e4
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=990561
https://nodejs.org/en/blog/vulnerability/july-2021-security-releases/

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2021-07-06 13:49:15 +09:00
Othmar Truniger 13ef8a8d9c libfmt: bump to version 8.0.1
Signed-off-by: Othmar Truniger <github@truniger.ch>
2021-07-05 16:41:21 +02:00
Michael Heimpold 20c884bbd5 libzip: fix typo in patch (fixes #15992)
This prevented expansion of libdir in pkgconfig.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-07-02 23:59:53 +02:00
Michael Heimpold d452429a56
Merge pull request #14716 from mhei/libgpiod-update
libgpiod: update to 1.6.3
2021-07-01 20:40:53 +02:00
Rosen Penev c61eb3ed98
Merge pull request #15797 from lnslbrty/update/libulfius-2.7.3
libulfius: update to 2.7.3
2021-06-29 14:41:49 -07:00
Michael Heimpold 4db1fba5a1 libgpiod: update to 1.6.3
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-06-29 21:08:39 +02:00
Michael Heimpold 7ce9c89988
Merge pull request #15992 from mhei/libzip-fix-pkgconfig
libzip: fix pkgconfig paths (fixes #15943)
2021-06-29 13:51:11 +02:00
Josef Schlehofer 39dedfee16
Revert "uci2: update revision"
I'm reverting this commit, because it is pulling newer source code, but
without doing a new version bump. This results that users who already
installed this library on their router will have different package
content than users who installed it after the commit.

The another small reason is that commit subject - update revision is cryptic itself and should be more bulletproof like saying update to version 1.1

More details: https://github.com/openwrt/packages/pull/15990#issuecomment-870333695

This reverts commit e779323481.

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2021-06-29 09:12:51 +02:00
Michael Heimpold 851c7a1e0a libzip: fix pkgconfig paths (fixes #15943)
We should use upstream patch here, which can be removed later,
instead of maintaining our own one.

Reported-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-06-29 07:47:51 +02:00
Rosen Penev c78dc1743b
Merge pull request #15990 from sartura/uci2-bump
uci2: update revision
2021-06-28 12:47:09 -07:00
Jakov Petrina e779323481 uci2: update revision
Pull in new API function from upstream.

Signed-off-by: Jakov Petrina <jakov.petrina@sartura.hr>
2021-06-28 16:22:20 +02:00
Andy Walsh a2323ed265 libtirpc: update to 1.3.2
update to 1.3.2

Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
2021-06-27 15:07:10 +02:00
Rosen Penev 8dbc99521f
Merge pull request #15937 from TDT-AG/pr/20210623-libmariadb
libmariadb: fix compilation cmake issue
2021-06-26 12:52:42 -07:00
Rosen Penev d2867fe2c7
Merge pull request #15946 from neheb/ms
msgpack-c: don't check for GTest
2021-06-25 21:24:16 -07:00
Rosen Penev 7f34b03356 msgpack-c: don't check for GTest
Not available with OpenWrt. Fixes compilation when host GTest is
present.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-24 01:20:09 -07:00
Rosen Penev e444e5bd70 spdlog: fix compilation with fmtlib 8
Small API change.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-24 01:17:37 -07:00
Michael Heimpold 850c578bc7
Merge pull request #15930 from mhei/libzip-update
libzip: update to 1.8.0
2021-06-23 20:09:20 +02:00
Florian Eckert fd13c120e7 libmariadb: fix compilation cmake issue
This patch fixes the compilation issue of the upstream Cmake file.
If this patch is not applied we get the following compilation error output.

CMake Error at cmake/ConnectorName.cmake:30 (ENDMACRO):
  Flow control statements are not properly nested.
Call Stack (most recent call first):
  CMakeLists.txt:423 (INCLUDE)

The blamed cmake/ConnectorName.cmake file gets fixed with this patch.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2021-06-23 12:06:33 +02:00
Toni Uhlig 3924eeb267
libulfius: update to 2.7.3
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
2021-06-22 20:50:01 +02:00
Rosen Penev 238046303d
Merge pull request #15932 from tru7/libfmt
libfmt: bump to version 8.0.0
2021-06-22 03:52:00 -07:00
Othmar Truniger 23f11c9b67 libfmt: bump to version 8.0.0
Signed-off-by: Othmar Truniger <github@truniger.ch>
2021-06-22 09:32:58 +02:00
Rosen Penev 2ed47b5414
Merge pull request #15884 from neheb/dom
domoticz: update to 2021.1 and fix other packages
2021-06-21 20:08:09 -07:00
Michael Heimpold bf23601dfd libzip: update to 1.8.0
Disable (new) support for zstd (Zstandard) compression for now.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-06-21 23:00:19 +02:00
Jan Hak 0b8f3ea81a libedit: update to version 20210522-3.1
Signed-off-by: Jan Hak <jan.hak@nic.cz>
2021-06-21 14:15:20 +02:00
Hirokazu MORIKAWA d79ec77385 icu: bump to 69.1
ICU 69 updates to CLDR 39 locale data with many additions and corrections. ICU 69 also includes significant improvements for measurement unit formatting and number formatting in general, as well as many other bug fixes and enhancements.

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2021-06-20 14:14:42 +09:00
Rosen Penev fb170424dd libmraa: don't build tests
Fixes compilation when gtest is present.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-19 14:11:31 -07:00
Jiri Slachta d3a0aaca7d
Merge pull request #15747 from neheb/tiff2
tiff: update to 4.2.3
2021-06-19 22:07:42 +02:00
Rosen Penev bda9ae631e
Merge pull request #15880 from neheb/ogg
libogg: update to 1.3.5
2021-06-16 15:21:07 -07:00
Rosen Penev a23825d154
Merge pull request #15882 from neheb/es
libesmtp: update to 1.1.0
2021-06-16 14:03:00 -07:00
Rosen Penev 169dd3f14e libesmtp: update to 1.1.0
New upstream. Uses meson now. Removed outdated patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-16 12:55:57 -07:00
Rosen Penev 953e23b0e6 minizip: update to 3.0.2
Add back compat header as domoticz really wants it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-15 20:04:50 -07:00
Rosen Penev 22eefcd7af jsoncpp: add back exceptions
domoticz wants them. No idea how to avoid it. Easier to just add back
here.

Removed several outdated options from CMake times.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-15 20:04:50 -07:00
Rosen Penev b97e413123 libcap-ng: update to 0.8.2
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-15 19:58:53 -07:00
Rosen Penev 6a5ec2434f libogg: update to 1.3.5
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-15 19:58:14 -07:00
Rosen Penev 8cbbadede7
Merge pull request #15849 from neheb/ppb
protobuf: update to 3.17.2
2021-06-15 01:48:24 -07:00
Rosen Penev 6ab7fb089b
Merge pull request #15848 from neheb/als
alsa stuff: update to 1.2.5
2021-06-15 01:46:29 -07:00
Josef Schlehofer 51a7eabe9d
Merge pull request #15866 from ja-pa/redis-6.2.4
redis: update to version 6.2.4
2021-06-14 20:39:37 +02:00
Jan Pavlinec c7ffa391f1
redis: update to version 6.2.4
Fixes CVE-2021-32625

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-06-14 16:15:56 +02:00
Jonathan G. Underwood 4a241581ab getdns: remove maintainer
Signed-off-by: Jonathan G. Underwood <jonathan.underwood@gmail.com>
2021-06-13 15:10:40 +01:00
Rosen Penev 40d2b7c43e libprotobuf-c: update to 1.4.0
Remove patch. Upstream fixed it.

Add AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-12 21:17:55 -07:00
Rosen Penev 11acce8fa9 protobuf: update to 3.17.2
Refreshed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-12 21:16:58 -07:00
Rosen Penev 2e654b19f3 treewide: back to cmake.mk
Ninja was merged to base and therefore we can now use normal cmake.mk

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-12 21:05:01 -07:00
Rosen Penev 47b48b2088 alsa-lib: update to 1.2.5
Refresh patches. Remove upstream one.

Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-12 20:27:52 -07:00
Rui Salvaterra 0261cd0972 getdns: bump to 1.7.0
Remove obsolete patches.

Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
2021-06-11 15:38:42 +01:00
Rosen Penev c038c363d7
Merge pull request #15789 from nickberry17/update_mm_and_libs
Update ModemManager and dependencies
2021-06-11 03:26:11 -07:00
Rosen Penev dba83738a4
Merge pull request #15733 from neheb/microh
libmicrohttpd: update to 0.9.73
2021-06-07 19:18:21 -07:00
Jianhui Zhao 4c163b0b12 libuhttpd: Update to 3.12.1
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-06-07 17:43:10 +03:00
Toni Uhlig 1f4f3a6544 liborcania: update to 2.2.1
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
2021-06-07 17:42:57 +03:00
Nicholas Smith 2e3fb9c996 libmbim: bump to 1.24.8
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-06-06 20:53:56 +10:00
Nicholas Smith 875e7a759d libqmi: bump to 1.28.6
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-06-06 20:52:36 +10:00
Rosen Penev 7f03141b72
Merge pull request #15772 from DeathCamel58/libnet-1.2.x-libnet-config-master
[master] libnet: Export libnet-config in development environments
2021-06-04 15:38:51 -07:00
Jianhui Zhao 756d9e906b libuhttpd: Update to 3.12.0
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-06-04 20:52:56 +03:00
Dylan Corrales e9a6f49ca3 libnet: Export `libnet-config` in development environments
Signed-off-by: Dylan Corrales <deathcamel58@gmail.com>
2021-06-04 09:38:49 -04:00
Rosen Penev 62c35172a4
Merge pull request #15771 from ClaymorePT/boost_1.76.0_r1
boost: Fixes Boost.regex header-only (v5) include
2021-06-03 16:59:29 -07:00
Carlos Miguel Ferreira 34a91f7be3
boost: Fixes Boost.regex header-only (v5) include
In v1.76.0 Boost.Regex became a header-only library.
With this update, there are now two different versions:
- v4 for C++03 (deprecated)
- v5 header-only

This commit fixes an issue which was preventing Boost.Regex
from being built for old ArmV5 targets

Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
2021-06-03 23:45:30 +01:00
Rosen Penev 730c582d29 libjpeg-turbo: fix compilation without NEON
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-03 13:21:52 -07:00
Rosen Penev 593e4e2acf taglib: add missing zlib dependency
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-02 21:11:17 -07:00
Rosen Penev c25c4e3770 taglib: fix typo
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-02 21:07:46 -07:00
Rosen Penev b1d81f5dde taglib: built shared library instead
Two packages here use taglib.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-02 21:04:43 -07:00
James Taylor bdfc242e29 pdns: Change maintainer on pdns packages
Remove myself as maintainer from PowerDNS Related packages and add
Peter van Dijk from PowerDNS as the new maintainer

Signed-off-by: James Taylor <james@jtaylor.id.au>
2021-06-02 22:19:42 +10:00
Rosen Penev 97c47cd88a
Merge pull request #15744 from neheb/jose
jose: update to 11
2021-06-02 04:27:59 -07:00
Rosen Penev 319ae27857
Merge pull request #15734 from neheb/gtl
gnutls: update to 3.7.2
2021-06-02 04:27:25 -07:00
Rosen Penev 63ac7ada00 jose: update to 11
Reorganized Makefile slightly for consistency between packages.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-02 02:02:27 -07:00
Rosen Penev 9477468efe
Merge pull request #15749 from neheb/npup
libnpupnp: update to 4.1.4
2021-06-02 01:49:24 -07:00
Rosen Penev 59a39d4c6f gnutls: update to 3.7.2
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 23:18:24 -07:00
Rosen Penev 417d86975f
Merge pull request #15737 from neheb/jpgt
libjpeg-turbo: update to 2.1.0
2021-06-01 23:15:36 -07:00
Rosen Penev 466a17b699
Merge pull request #15735 from neheb/expa
expat: update to 2.4.1
2021-06-01 23:15:32 -07:00
Rosen Penev 93091ea175
Merge pull request #15731 from neheb/libupnp2
libupnp: update to 1.14.7
2021-06-01 23:15:16 -07:00
Rosen Penev 93deac88f2 libnpupnp: update to 4.1.4
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 23:11:58 -07:00
Rosen Penev 2072dc396f tiff: update to 4.2.3
Remove automake patch as it's not used.

Remove ftell patch as it seems to not be needed anymore.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 23:10:37 -07:00
Rosen Penev 4ea4bc8077 libjpeg-turbo: update to 2.1.0
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 23:01:37 -07:00
Rosen Penev b50040f4e4 expat: update to 2.4.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 23:00:12 -07:00
Rosen Penev 1a6e185944 libmicrohttpd: update to 0.9.73
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 22:58:38 -07:00
Rosen Penev 57f837d2a6 taglib: update to 1.12
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 22:57:38 -07:00
Rosen Penev d41d71e630 libupnp: update to 1.14.7
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-06-01 22:56:31 -07:00
Rosen Penev e3d4d253b4 spice: update to 0.15.0
Remove celt051 option as upstream removed it.

Remove upstreamed patches.

Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-05-31 15:26:36 +08:00
Rosen Penev 7aefc1daee
Merge pull request #15639 from commodo/seafile-remove-me
seafile: remove myself as maintainer of these packages
2021-05-29 09:44:34 -07:00
David Bauer 69cf7836df xr_usb_serial_common: fix kernel 5.10 builds
Building the xr_usb_serial module fails for Kenel 5.10 with CONFIG_PM
enabled:

xr_usb_serial_common.c:1574:15: error: 'ASYNCB_INITIALIZED' undeclared
(first use in this function); did you mean 'RCU_INITIALIZER'?

Use tty_port_initialized in order to determine the status of the TTY
port. This is compatible with Kernel 5.10 and at least Kernel 5.4.

Signed-off-by: David Bauer <mail@david-bauer.net>
2021-05-25 22:41:04 +02:00
Alexander Egorenkov 52af17df39 libassuan: remove gpgrt-config workaround
After the recent libgpg-error update, the workaround for gpgrt-config
is no more necessary.

Reverts 63481e619 ("libassuan: fix linking of host's libgpg-error").

Signed-off-by: Alexander Egorenkov <egorenar-dev@posteo.net>
2021-05-22 00:15:34 +01:00
Michael Heimpold 791892d482
Merge pull request #15678 from mhei/libxml-update
libxml2: update to 2.9.12
2021-05-21 23:07:44 +02:00
Lucian Cristian 0f5eadf362 nss: update to 3.65
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2021-05-21 15:41:17 +03:00
Lucian Cristian d8fb7f4287 nspr: update to 4.30
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
2021-05-21 15:41:04 +03:00
Michael Heimpold 6b932d3ff7 libxml2: update to 2.9.12
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2021-05-19 00:12:32 +02:00
Alexandru Ardelean 1e27dd7f8f seafile: remove myself as maintainer of these packages
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-05-17 10:40:56 +03:00
Igor Bezzubchenko 59f8342dae libpqxx: update to version 7.5.2
Signed-off-by: Igor Bezzubchenko <garikello@gmail.com>
2021-05-14 16:07:43 +02:00
W. Michael Petullo 71b7f74ff1 libgpg-error: patch to fix cross-compile
Paul Blazejowski discovered that the recent update to this package broke
cross-compiling for some OpenWrt platforms. This backports commit 33593864
(March 26, 2021) from the upstream libgpg-error project to fix this
problem.

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-05-12 22:27:32 -05:00
Rosen Penev 9c7195a756
Merge pull request #15593 from flyn-org/snort3
Update snort3 and libdaq3 packages
2021-05-11 11:25:13 -07:00
Alexander Egorenkov 63481e619c libassuan: fix linking of host's libgpg-error
gpgrt-config is trying to use the host's /usr/lib path when looking for
libgpg-error. Therefore, disable it and gpg-error-config will be used
as a fallback.

Signed-off-by: Alexander Egorenkov <egorenar-dev@posteo.net>
2021-05-11 17:02:15 +01:00
Josef Schlehofer 62c48b89de
Merge pull request #15602 from ja-pa/redis-6.2.3
redis: update to version 6.2.3
2021-05-11 15:05:53 +02:00
Josef Schlehofer b300fb7bfb
Merge pull request #15604 from ja-pa/lmdb-0.9.29
lmbd: update to version 0.9.29
2021-05-11 15:05:39 +02:00
Jan Pavlinec 54d8ac1441
lmbd: update to version 0.9.29
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-05-11 12:44:13 +02:00
Jan Pavlinec 5f47bec5e8
redis: update to version 6.2.3
Fixes CVE-2021-29477

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-05-11 12:35:25 +02:00
W. Michael Petullo a1c06aafb3 libdaq3: update to 3.0.3
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-05-10 21:44:23 -05:00
Rosen Penev 28087c7045
Merge pull request #15595 from flyn-org/libgcrypt
Update libgpg-error and libgcrypt
2021-05-10 14:26:17 -07:00
Rosen Penev 385e3633ae
Merge pull request #15596 from flyn-org/openldap
openldap: update to 2.4.58
2021-05-10 14:25:51 -07:00
W. Michael Petullo 2aa097b441 libgcrypt: update to 1.9.3
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-05-10 13:19:47 -05:00
W. Michael Petullo c664e1f207 libgpg-error: update to 1.42
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-05-10 13:19:34 -05:00
W. Michael Petullo f200ccd6fc openldap: update to 2.4.58
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-05-10 12:56:18 -05:00
W. Michael Petullo c7f1a6290a libgee: update to 0.20.4
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-05-10 11:52:32 -05:00
Jan Pavlinec 0352d6d942 libmaxminddb: update to version 1.6.0
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-05-03 18:19:39 +03:00
Eneas U de Queiroz 2151d948a5
Merge pull request #15532 from dangowrt/bunch-of-updates
a bunch of package updates
2021-05-03 11:30:53 -03:00
Hirokazu MORIKAWA 1eb29ddc95 icu: add ABI_VERSION
To prevent inconsistencies in the coming version (69.1).

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
2021-04-30 02:00:26 -07:00
Daniel Golle 1c7ef6c666 libksba: update to version 1.5.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-04-29 00:59:15 +01:00
Daniel Golle 81ccb88a80 libinput: update to version 1.17.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-04-29 00:59:15 +01:00