aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | | | | | | | | | | Merge pull request #8923 from ammubhave/fixboostRosen Penev2019-05-07
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ / / |/| | | | | | | | | | | boost: Fix boost apply_visitor for lvalue variants
| * | | | | | | | | | | boost: Fix boost apply_visitor for lvalue variantsAmol Bhave2019-05-07
| | |_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Boost 1.70.0 broke the apply_visitor functions for lvalue reference variants. This imports the patch that fixes this issue from upstream. Tested this by compiling a library (https://github.com/facebookincubator/fizz) that works with 1.69 but breaks with 1.70. And then, importing this patch and trying the compilation again. Compile tested: nbg6817 Maintainer: @ClaymorePT Signed-off-by: Amol Bhave <ambhave@fb.com>
* | | | | | | | | | | Merge pull request #8311 from TDT-AG/pr/20190227-collectdFlorian Eckert2019-05-07
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | collectd: add uci config support
| * | | | | | | | | | | collectd: add uci config supportFlorian Eckert2019-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add uci config support. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | | | | | | | | | | | Merge pull request #8909 from neheb/msm2Rosen Penev2019-05-07
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | msmtp: Remove uClibc hack
| * | | | | | | | | | | | msmtp: Remove uClibc hackRosen Penev2019-05-05
| | |_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This seems to no longer be needed. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | Merge pull request #8913 from neheb/ptpRosen Penev2019-05-07
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | linuxptp: Remove false depends
| * | | | | | | | | | | | linuxptp: Remove false dependsRosen Penev2019-05-05
| |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems ever since the switch to uClibc-ng, this builds perfectly fine. Moved PKG_MAINTAINER variable for consistency between packages. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | Merge pull request #8868 from neheb/icuRosen Penev2019-05-07
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | icu: Fix compilation with uClibc-ng
| * | | | | | | | | | | | icu: Fix compilation with uClibc-ngRosen Penev2019-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | uClibc-ng does not define these math functions in math.h , only in tgmath.h. Therefore the cmath header will not work. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | | Merge pull request #8870 from neheb/zstRosen Penev2019-05-06
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / |/| | | | | | | | | | | | zstd: Fix compilation on uClibc-ng
| * | | | | | | | | | | | zstd: Fix compilation on uClibc-ngRosen Penev2019-05-01
| |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | uClibc-ng defines __GLIBCC__ and does not compile in execinfo.h. Disable it. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | Merge pull request #7099 from ammubhave/add_libsigarRosen Penev2019-05-06
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | libsigar: add sigar libary
| * | | | | | | | | | | | libsigar: add sigar libaryAmol Bhave2019-05-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sigar is a System Information Gatherer And Reporter library for C++ Adding the package so other C++ packages that depends on this library can build. This creates a libsigar.so shared library. Signed-off-by: Amol Bhave <ambhave@fb.com>
* | | | | | | | | | | | | Merge pull request #8916 from diizzyy/net-socat-1733Ted Hess2019-05-06
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | net/socat: Update to 1.7.3.3
| * | | | | | | | | | | | | net/socat: Update to 1.7.3.3Daniel Engberg2019-05-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update socat to 1.7.3.3 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | | | | | | | | luafilesystem: fix PKG_MIRROR_HASHHans Dedecker2019-05-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
* | | | | | | | | | | | | | Merge pull request #8921 from ysc3839/tr-web-controlRosen Penev2019-05-06
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert "transmission-web: set conflicts with transmission-web-control"
| * | | | | | | | | | | | | | Revert "transmission-web: set conflicts with transmission-web-control"Richard Yu2019-05-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 18c9a03770793e084eab5601d51b21ca4b374f75. To fix "make menuconfig" shows "recursive dependency detected". Signed-off-by: Richard Yu <yurichard3839@gmail.com>
* | | | | | | | | | | | | | | Merge pull request #8920 from mstorchak/tgtRosen Penev2019-05-06
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | tgt: update to 1.0.77
| * | | | | | | | | | | | | | tgt: update to 1.0.77Maxim Storchak2019-05-06
| | |/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - update to 1.0.77 - apply patches from Rosen Penev for compatibility with uClibc-ng - add an option for rotation_rate selection Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
* / | | | | | | | | | | | | shadowsocks-libev: add plugin options supportYousong Zhou2019-05-06
|/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reference: https://github.com/openwrt/packages/issues/8903 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | | | | | | | | | Merge pull request #8902 from ja-pa/measurement-kit-0.10.3Josef Schlehofer2019-05-06
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | measurement-kit: update to version 0.10.3
| * | | | | | | | | | | | | measurement-kit: update to version 0.10.3Jan Pavlinec2019-05-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add patch to fix disabled deprecated OpenSSL APIs Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | | | | | | | | | | Merge pull request #8613 from diizzyy/libx264Daniel Engberg2019-05-06
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libs/libx264: Update to 20190324 and rework Makefile
| * | | | | | | | | | | | | | libs/libx264: Update to 20190324 and rework MakefileDaniel Engberg2019-05-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update (lib)x264 to 20190324 * Stop using GNU Autotools and use libx264's own configuration facility * Drop hardcoded CFLAGS, x264 will handle those fine on its own This will override toolchain optimizaion and set -O3 irregardless of setting. * Rework LTO and ASM optmization selection to make it more compact and readable. This drops optimization for x86 32-bit which is being deprecated in favour of x86_64 in general and the very few systems still in use that doesn't support 64-bit are too slow to be usable anyway. * Import patches to fix compilation on ARM and x86 (32-bit) from OpenEmbedded * Minor style fixes to Makefile Source: http://cgit.openembedded.org/openembedded-core/tree/meta/recipes-multimedia/x264/x264 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | | | | | | | | | | | Merge pull request #8918 from mstorchak/tmuxDaniel Engberg2019-05-06
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tmux: update to 2.9a
| * | | | | | | | | | | | | | | tmux: update to 2.9aMaxim Storchak2019-05-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
* | | | | | | | | | | | | | | | Merge pull request #8886 from lnslbrty/update/nDPIRosen Penev2019-05-06
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / / / / |/| | | | | | | | | | | | | | | libndpi: update to 2.8.0
| * | | | | | | | | | | | | | | libndpi: update to 2.8.0Toni Uhlig2019-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The nDPI autogen.sh is broken and can lead to compile issues. Fixed. Also removed PKG_INSTALL since it produces invalid symlinks to *.so*. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | | | | | | | | | | | | | | | Merge pull request #8912 from neheb/faadTed Hess2019-05-05
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / / / / / |/| | | | | | | | | | | | | | | faad2: Remove uClibc hack
| * | | | | | | | | | | | | | | faad2: Remove uClibc hackRosen Penev2019-05-05
|/ / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OpenWrt uses uClibc-ng now, and it seems that these are no longer needed as it seems faad2 automatically renames these functions. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | | | | Merge pull request #8846 from neheb/getRosen Penev2019-05-05
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | geth: Update to 1.8.27
| * | | | | | | | | | | | | | | geth: Update to 1.8.27Rosen Penev2019-04-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated Makefile for consistency between packages. Updated Licensing information. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | | | | | Merge pull request #8736 from neheb/erlaRosen Penev2019-05-05
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | erlang: Fix compilation without deprecated OpenSSL APIs
| * | | | | | | | | | | | | | | | erlang: Fix compilation without deprecated OpenSSL APIsRosen Penev2019-04-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Renamed the patch as it does more than fix ENGINE support. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | | | | | | Merge pull request #8518 from neheb/iRosen Penev2019-05-05
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libimobiledevice packages updated to git
| * | | | | | | | | | | | | | | | | usbmuxd: Update to latest gitRosen Penev2019-05-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream makes infrequent releases while having an active git repository with important bugfixes. Removed maintainer from all three packages due to inactivity. Removed systemd support as systemd is not used in OpenWrt. Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | | | | | | | | | | | | | | libusbmuxd: Update to latest gitRosen Penev2019-05-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream has really infrequent releases while having an active git repository with important bugfixes. This is also needed because libimobiledevice requires a new API from libusbmuxd. Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | | | | | | | | | | | | | | libimobiledevice: Update to latest gitRosen Penev2019-05-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream makes seriously infrequent updates whereas they have an active git repository with important bugfixes. Also fixed compilation without deprecated OpenSSL APIs. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | | | | | | | Merge pull request #8897 from neheb/boosRosen Penev2019-05-05
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | boost: Fix uClibc-ng compilation again
| * | | | | | | | | | | | | | | | | | boost: Fix uClibc-ng compilation againRosen Penev2019-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Several math functions are not defined in math.h and therefore cannot be used. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | | | | | | | | | tor: update to 0.4.0.5Peter Wagner2019-05-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Wagner <tripolar@gmx.at>
* | | | | | | | | | | | | | | | | | | django-simple-captcha: bump to 0.5.11Eneas U de Queiroz2019-05-05
| |_|_|_|_|_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a bugfix release. Made some cosmetic changes to the Makefile. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* | | | | | | | | | | | | | | | | | Merge pull request #8896 from jefferyto/uwsgi-cgi-python-package-mkRosen Penev2019-05-04
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | uwsgi-cgi: Remove reference to python-package.mk
| * | | | | | | | | | | | | | | | | uwsgi-cgi: Remove reference to python-package.mkJeffery To2019-05-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since no Python packages are produced by this package, including python-package.mk is unnecessary. This removes the reference to python-package.mk. (PKG_RELEASE is unchanged as this should have no effect on the build.) Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | | | | | | | | | | | Merge pull request #8895 from jefferyto/libimobiledevice-python-package-mkRosen Penev2019-05-03
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libimobiledevice: Remove reference to python-package.mk
| * | | | | | | | | | | | | | | | | | libimobiledevice: Remove reference to python-package.mkJeffery To2019-05-04
| |/ / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since no Python packages are produced by this package, including python-package.mk is unnecessary. This removes the reference to python-package.mk. (PKG_RELEASE is unchanged as this should have no effect on the build.) Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | | | | | | | | | | | Merge pull request #8840 from cotequeiroz/django_pytzRosen Penev2019-05-03
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | django: Add pytz dependency
| * | | | | | | | | | | | | | | | | | django: Add pytz dependencyEneas U de Queiroz2019-04-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pytz is a run-time dependency of django. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>