aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | Merge pull request #9505 from cotequeiroz/luaposixRosen Penev2019-07-27
|\ \ \ \ | | | | | | | | | | luaposix: remove eglibc remnants
| * | | | luaposix: remove eglibc remnantsEneas U de Queiroz2019-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As a side-effect, this adds the getlogin function back when using glibc. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | | | | Merge pull request #9527 from neheb/zstdRosen Penev2019-07-27
|\ \ \ \ \ | | | | | | | | | | | | zstd: Update to 1.4.1
| * | | | | zstd: Update to 1.4.1Rosen Penev2019-07-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Decompression speedup of 7% on average. Remove upstreamed uClibc-ng patch. Fixed optimization option to show properly under menuconfig. Added LTO for smaller size. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #9569 from neheb/zmqRosen Penev2019-07-27
|\ \ \ \ \ \ | | | | | | | | | | | | | | libzmq: Remove uClibc++ support
| * | | | | | libzmq: Remove uClibc++ supportRosen Penev2019-07-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libzmq is used by fbzmq, which absolutely requires libstdcpp since it's a C++14 project. There's no point in using two libc++. Cleaned up Makefile for consistency between packages. Added nanosleep patch for platforms that are missing usleep. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | Merge pull request #9486 from neheb/ykRosen Penev2019-07-27
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | ykpers: Update to 1.20.0
| * | | | | | | ykpers: Update to 1.20.0Rosen Penev2019-07-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Cleaned up Makefile for consistency between packages. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | dnstop: add new packageKen Xu2019-07-27
| |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | Signed-off-by: Ken Xu <windedge99@gmail.com>
* | | | | | | Merge pull request #9551 from neheb/elekRosen Penev2019-07-25
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | elektra: Switch to Lua 5.3
| * | | | | | | elektra: Switch to Lua 5.3Rosen Penev2019-07-25
| | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After the introduction of Lua 5.3 to OpenWrt, elektra picks it up instead of 5.1. Since 5.1 is unsupported anyway, switch to 5.3. Added liblua to PKG_BUILD_DEPENDS as the FindLua script is broken. Having it here allows compilation to continue. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | Merge pull request #8680 from lucize/intltool-perlRosen Penev2019-07-25
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | intltool: depend on hostpkg first
| * | | | | | | intltool: depend on hostpkg firstLucian Cristian2019-04-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The scripts will use the $(STAGING_DIR)/bin/perl which is a simlink to native perl, using $(STAGING_DIR_HOSTPKG) first will use the "perl/host" that has multiple modules availabe to be built as host like perl-xml-parser Using the $(STAGING_DIR)/bin/perl pakages that depend on "perl-xml-parser/host" will fail with: You must have XML::Parser installed to run [...]/staging_dir/hostpkg/bin/intltool-merge Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | | | | | | | Merge pull request #9545 from neheb/tarRosen Penev2019-07-25
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | tar: Add zstd capability
| * | | | | | | | tar: Add zstd capabilityRosen Penev2019-07-22
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Small cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #9568 from blocktrron/masterMatthias Schiffer2019-07-25
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | | fastd: fix segmentation fault with musl >1.1.20
| * | | | | | | fastd: fix segmentation fault with musl >1.1.20David Bauer2019-07-25
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When compiled with musl >1.1.20, fastd will crash in case it can't resolve a peers hostname. This is due to a changed implementation of freeaddrinfo in musl 1.1.21 onwards. This segfault is fixed by not calling freeaddrinfo in case the supplied pointer is null. Signed-off-by: David Bauer <mail@david-bauer.net>
* | | | | | | Merge pull request #9507 from ja-pa/lmdbRosen Penev2019-07-25
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | lmdb: add new package
| * | | | | | | lmdb: add new packageJan Pavlinec2019-07-19
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | | | Merge pull request #9516 from neheb/sooooRosen Penev2019-07-25
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | socat: Fix compilation when usleep is missing
| * | | | | | | socat: Fix compilation when usleep is missingRosen Penev2019-07-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | usleep is a legacy function that was removed in POSIX-2008. uClibc-ng can be configured to compile without it. if out the code as it's not used. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #9563 from neheb/xz3Rosen Penev2019-07-25
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | xz: Remove bash dependency
| * | | | | | | | xz: Remove bash dependencyRosen Penev2019-07-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bash is not needed here. These scripts are POSIX compliant. This was originally added as the configure script looks for /bin/bash locally. Passing gl_cv_posix_shell overrides this. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #9454 from BKPepe/markupsafeRosen Penev2019-07-25
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | MarkupSafe: Makefile polishing and add src package
| * | | | | | | | | MarkupSafe: Makefile polishing and add src packageJosef Schlehofer2019-07-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Improve TITLE and Description - Remove PKG_UNPACK as it is not necessary - Correct LICENSE file Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | | | | | | | Merge pull request #9441 from ja-pa/zmq-security-fixRosen Penev2019-07-25
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | zeromq: update to version 4.1.7 (security fix)
| * | | | | | | | | | zeromq: update to version 4.1.7 (security fix)Jan Pavlinec2019-07-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: CVE-2019-13132 Added CPE ID Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | | | | | | | Merge pull request #9444 from ja-pa/expat-security-fixRosen Penev2019-07-25
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | expat: update to version 2.2.7 (security fix)
| * | | | | | | | | | | expat: update to version 2.2.7 (security fix)Jan Pavlinec2019-07-18
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: CVE-2018-20843 Changes: add PKG_CPE_ID switch to xz remove maintainer Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | | | | | | | Merge pull request #9535 from dengqf6/pcreRosen Penev2019-07-25
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | pcre: remove unnecessary dependency on C++ lib
| * | | | | | | | | | | pcre: remove unnecessary dependency on C++ libDENG Qingfang2019-07-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add libpcrecpp to PKG_CONFIG_DEPENDS to properly trigger reconfiguration, avoiding unnecessary dependency. This reverts commit 17090fecf18c795f5bfa5e1ea375ccd65d24f227. This reverts commit ec138f51ab54873252bbe3e848f5fa9c20de78b9. Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
* | | | | | | | | | | | Merge pull request #9548 from James-TR/pdns-recursor-4.2.0Rosen Penev2019-07-25
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | pdns-recursor: bump version to 4.2.0
| * | | | | | | | | | | | pdns-recursor: bump version to 4.2.0James Taylor2019-07-23
| | |_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maintainer: me This commit bumps the version of pdns-recursor to the latest 4.2.0. This release brings in mostly minor changes, with the full changelog available at https://doc.powerdns.com/recursor/changelog/4.2.html Signed-off-by: James Taylor <james@jtaylor.id.au>
* | | | | | | | | | | | Merge pull request #9543 from jefferyto/prometheus-fix-mips64-buildRosen Penev2019-07-25
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | prometheus: Fix build for mips64/mips64el
| * | | | | | | | | | | | prometheus: Fix build for mips64/mips64elJeffery To2019-07-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prometheus uses an older version of fsnotify, which uses a system call (unix.InotifyInit) that is not implemented for mips64/mips64el. This patches Prometheus to use a newer version of fsnotify that uses a different system call (unix.InotifyInit1) that should be available on all Linux systems. Fixes #9494. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | | | | | | Merge pull request #9555 from rosysong/kea-fixRosen Penev2019-07-25
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | kea: remove python3 dependency of kea-admin
| * | | | | | | | | | | | | kea: remove python3 dependency of kea-adminRosy Song2019-07-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix #9495 Signed-off-by: Rosy Song <rosysong@rosinson.com>
* | | | | | | | | | | | | | Merge pull request #9489 from BKPepe/egenixRosen Penev2019-07-25
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | python-egenix-mx-base: Makefile polishing
| * | | | | | | | | | | | | | python-egenix-mx-base: Makefile polishingJosef Schlehofer2019-07-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Correct SPDX License Identifier Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | | | | | | | | | | | | Merge pull request #9564 from neheb/hapRosen Penev2019-07-25
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|/ / / / / / / |/| | | | | | | | | | | | | | haproxy: Get rid of bashisms from get-latest-patches.sh
| * | | | | | | | | | | | | | haproxy: Get rid of bashisms from get-latest-patches.shRosen Penev2019-07-24
|/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plus some other shellcheck cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | | | treewide: Capitalize submenusEneas U de Queiroz2019-07-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed a typo in tcpreplay. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | | | | | | | | | | | | | Merge pull request #9511 from neheb/cifsRosen Penev2019-07-24
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cifsd
| * | | | | | | | | | | | | | cifsd: Update to 2019-07-17 commitRosen Penev2019-07-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes several issues, including a restart bug and compilation on kernel 4.9. Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | | | | | | | | | | | cifsd-tools: Run init script through shellcheckRosen Penev2019-07-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Main warning fixed was about echo -e not being supported by POSIX sh. Added PKG_BUILD_PARALLEL for slightly faster compilation. Small whitespace cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | | | | Merge pull request #9561 from ja-pa/libxslt-security-fixJiri Slachta2019-07-24
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libxslt: patch security issues
| * | | | | | | | | | | | | | | libxslt: patch security issuesJan Pavlinec2019-07-24
| | |_|_|_|/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: CVE-2019-13117 CVE-2019-13118 Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | | | | | | | | | | | Merge pull request #9556 from neheb/netRosen Penev2019-07-24
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | | | netifyd: Don't build on uClibc-ng
| * | | | | | | | | | | | | | netifyd: Don't build on uClibc-ngRosen Penev2019-07-23
| | |_|_|/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This absolutely needs symbols from libresolv, which uClibc-ng does not support. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | | | Merge pull request #9549 from hauke/io-tool-syncRosen Penev2019-07-24
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | io: Open /dev/mem with O_SYNC for uncached access