aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * | | | | | | | | | sysstat: update to 12.4.0Rosen Penev2020-08-18
| | |_|/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | Merge pull request #13163 from neheb/strssRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | stress: replace usleep with nanosleep
| * | | | | | | | | | stress: replace usleep with nanosleepRosen Penev2020-08-18
| |/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The former is deprecated. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | / / / / / / mpd: enable libmad globallyRosen Penev2020-08-18
| |_|_|/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since making ffmpeg dependent on BUILD_PATENTED, the full variant becomes unable to play mp3s. Change that. libmad is superior to mpg123 because of its faster decoding speed on soft float systems and because in MPD, it supports streams (HTTP for example). ffmpeg supports streams as well. Avoid libmad in that case. Minor Makefile cleanups. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #13165 from neheb/tcpRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | tcp_wrappers: fix compilation without cdefs
| * | | | | | | | | tcp_wrappers: fix compilation without cdefsRosen Penev2020-08-18
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | __DECLS are glibc specific. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #13166 from ClaymorePT/boost_1.74.0_r1Rosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | boost: Package Revision - Fix C++ standard flag
| * | | | | | | | boost: Package Revision - Fix C++ standard flagCarlos Miguel Ferreira2020-08-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes the use of the C++20 standard when GCC 10.x is used. Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* | | | | | | | | Merge pull request #12967 from G-M0N3Y-2503/docker-deps-devinstall-removeRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | runc/containerd/libnetwork: Refactored Makefiles
| * | | | | | | | | runc: Removed DevInstall target and RefactorGerard Ryan2020-07-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
| * | | | | | | | | libnetwork: Changed Makefile layout to match runcGerard Ryan2020-07-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
| * | | | | | | | | containerd: Removed DevInstall target and RefactorGerard Ryan2020-07-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* | | | | | | | | | Merge pull request #13131 from jefferyto/python-pip-hash-checkingRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / |/| | | | | | | | | python3: Use hash-checking mode when installing host pip packages
| * | | | | | | | | python3: Use hash-checking mode when installing host pip packagesJeffery To2020-08-17
| | |_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In hash-checking mode[1], pip will verify downloaded package archives (source tarballs in our case) against known SHA256 hashes before installing the packages. As a consequence, this requires the use of requirements files[2] and pinning packages to known versions. The syntax for package Makefiles has changed slightly; HOST_PYTHON3_PACKAGE_BUILD_DEPENDS no longer accepts requirement specifiers like "foo>=1.0", only requirements file names (which are the same as package names in the most common case). This also updates affected packages, in particular: * python-zipp: "setuptools_scm[toml]" has been split into "setuptools-scm toml" to reuse the requirements file for setuptools-scm (the extra depends installed by "setuptools_scm[toml]" is toml). * python-pycparser: This previously used ply 3.10, whereas the requirements file will now install 3.11. [1]: https://pip.pypa.io/en/stable/reference/pip_install/#hash-checking-mode [2]: https://pip.pypa.io/en/stable/user_guide/#requirements-files Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | | Merge pull request #13159 from neheb/sedRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | sed: don't use selinux
| * | | | | | | | | sed: don't use selinuxRosen Penev2020-08-18
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #13151 from neheb/mpgrevRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | mpg123: revert back to using autotools
| * | | | | | | | | mpg123: revert back to using autotoolsRosen Penev2020-08-17
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CMake build seems to be experimental and not ready for primetime. Added altivec support. Fixed installing static output libraries to the target. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #13160 from ClaymorePT/boost_1.74.0Rosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | boost: Package Version Update (1.74.0)
| * | | | | | | | | boost: Package Version Update (1.74.0)Carlos Miguel Ferreira2020-08-18
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit updates Boost to version 1.74.0 In this release, there is one new libraries - STLInterfaces [2]: A library of CRTP bases to ease the writing of STL views, iterators, and sequence containers, from Zach Laine. This update also provides support to build boost with C++20 when using GCC 10.x More info about Boost 1.74.0 can be found at the usual place [1]. [1]: https://www.boost.org/users/history/version_1_74_0.html [2]: https://www.boost.org/libs/stl_interfaces/ Signed-off-by: Carlos Miguel Ferreira <carlosmf.pt@gmail.com>
* | | | | | | | | Merge pull request #13155 from neheb/atRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | at: fix compilation
| * | | | | | | | | at: fix compilationRosen Penev2020-08-18
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libselinux is being picked up by at. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #13156 from neheb/vimRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | vim: explicitly disable selinux
| * | | | | | | | | vim: explicitly disable selinuxRosen Penev2020-08-18
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now that libselinux is in the tree, vim picks it up. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | Merge pull request #13158 from neheb/logrotRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / |/| | | | | | | | logrotate: remove selinux support
| * | | | | | | | logrotate: remove selinux supportRosen Penev2020-08-18
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #13154 from neheb/meson551Rosen Penev2020-08-18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | meson: update to 0.55.1
| * | | | | | | | meson: update to 0.55.1Rosen Penev2020-08-18
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove upstream backports. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #13119 from neheb/lpcRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | lpc2list: remove deprecated functions
| * | | | | | | | lpc2list: remove deprecated functionsRosen Penev2020-08-14
| | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #13144 from jefferyto/python-cffi-1.14.2Rosen Penev2020-08-18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | python-cffi: Update to 1.14.2
| * | | | | | | | python-cffi: Update to 1.14.2Jeffery To2020-08-17
| | |_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | Merge pull request #13157 from neheb/logroRosen Penev2020-08-18
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | findutils: do not use selinux
| * | | | | | | | findutils: do not use selinuxRosen Penev2020-08-18
| | |_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #13152 from neheb/glib2651Rosen Penev2020-08-18
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | glib2: update to 2.65.1
| * | | | | | | glib2: update to 2.65.1Rosen Penev2020-08-17
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a small hack to glib2 to avoid using proxy-intl and break compilation under uClibc-ng. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | hs20: prepare server using uci-defaults and ship filesDaniel Golle2020-08-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setup user database if non-existent, configure uhttpd .php interpreter and patch php scripts to work out-of-the-box. Also ship Hotspot 2.0 SPP and OMA DM XML schema/DTD files needed at run-time for both client and server. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | Merge pull request #13135 from jefferyto/python-host-pip-cache-world-readableJosef Schlehofer2020-08-17
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | python3: Add config PYTHON3_HOST_PIP_CACHE_WORLD_READABLE
| * | | | | | | python3: Add config PYTHON3_HOST_PIP_CACHE_WORLD_READABLEJeffery To2020-08-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a config option PYTHON3_HOST_PIP_CACHE_WORLD_READABLE; if enabled, chmod will be run after pip install to make all files/directories in the host pip cache world-readable. Supersedes https://github.com/openwrt/packages/pull/13012. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | mpg123: install fmt123.h fileRosen Penev2020-08-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Seems it's not included in the CMake port. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | Merge pull request #13143 from jefferyto/python-hyperlink-20.0.1Rosen Penev2020-08-16
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | python-hyperlink: Update to 20.0.1
| * | | | | | | | python-hyperlink: Update to 20.0.1Jeffery To2020-08-17
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | Merge pull request #13142 from mateste/moniker.com_ddnsRosen Penev2020-08-16
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | ddns-scripts: Add moniker.com DDNS service
| * | | | | | | | ddns-scripts: Add moniker.com DDNS serviceMateusz Stępień2020-08-16
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Mateusz Stępień <mateusz@argc.pl>
* | | | | | | | Merge pull request #13136 from neheb/serRosen Penev2020-08-16
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | serialconsole: fix compilation with uClibc-ng
| * | | | | | | serialconsole: fix compilation with uClibc-ngRosen Penev2020-08-15
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* / | | | | | exfat-nofuse: removeRosen Penev2020-08-16
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since the introduction of the official exfat-oot package in base, this is now pointless. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | tracertools: remove usleep usageRosen Penev2020-08-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | usleep is deprecated. Modernized the Makefile to modern standards. Signed-off-by: Rosen Penev <rosenp@gmail.com> Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | Merge pull request #13129 from neheb/mpgRosen Penev2020-08-15
|\ \ \ \ \ \ | | | | | | | | | | | | | | mpg123: update to 1.26.3
| * | | | | | mpg123: update to 1.26.3Rosen Penev2020-08-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switched to CMake. CMake compiles faster. Added libsyn123 library as it's needed since version 1.26. Before: time make package/mpg123/compile -j 12 Executed in 16.05 secs fish external usr time 26.65 secs 0.00 micros 26.65 secs sys time 4.82 secs 833.00 micros 4.81 secs After: time make package/mpg123/compile -j 12 Executed in 12.12 secs fish external usr time 19.35 secs 0.00 micros 19.35 secs sys time 3.22 secs 752.00 micros 3.22 secs Signed-off-by: Rosen Penev <rosenp@gmail.com>