aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* irssi: add test.shJosef Schlehofer2021-07-27
| | | | Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* irssi: update to 1.2.3Rosen Penev2021-07-27
| | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* Merge pull request #16054 from commodo/numpyRosen Penev2021-07-27
|\ | | | | numpy: bump to version 1.21.1
| * numpy: bump to version 1.21.1Alexandru Ardelean2021-07-26
| | | | | | | | | | | | | | | | | | | | | | Also bump Cython version to 0.29.23. And add support for OpenBLAS. Currently optional, but will be enabled by default on some architectures later. Depends on PR https://github.com/openwrt/packages/pull/15685 Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | Merge pull request #15685 from commodo/openblasRosen Penev2021-07-27
|\ \ | | | | | | openblas: add initial package
| * | openblas: add initial packageAlexandru Ardelean2021-07-26
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* | Merge pull request #16211 from stintel/ovs-libunbound-optionalStijn Tintel2021-07-27
|\ \ | | | | | | openvswitch: make libunbound optional
| * | openvswitch: make libunbound optionalStijn Tintel2021-07-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Installing openvswitch on an x86/64 snapshot image pulls in a bunch of dependencies, good for a total size of 3648406 byte. Disabling libunbound reduces that with 559941 byte, for a total of 3088465 byte. This is quite a big reduction for a small tradeoff: without libunbound, hostnames can not be used to specify OpenFlow managers or controllers. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | | Merge pull request #16225 from lnslbrty/update/libndpi-4.0Rosen Penev2021-07-26
|\ \ \ | | | | | | | | libndpi: update to 4.0
| * | | libndpi: update to 4.0Toni Uhlig2021-07-27
| | | | | | | | | | | | | | | | | | | | | | | | - libmaxminddb config option Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* | | | Merge pull request #16144 from stangri/master-vpn-policy-routingStan Grishin2021-07-26
|\ \ \ \ | | | | | | | | | | vpn-policy-routing: update to 0.3.5-1
| * | | | vpn-policy-routing: update to 0.3.5-1Stan Grishin2021-07-26
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | support for 21.02.0-rc2 and up support for reloading a single interface on ifup/ifupdate rename config file updated shellcheck compatibility remove obsolete create/remove_lock interface processing optimizations to speed up reloads drop dependency on curl in user scripts uniform styling of functions Signed-off-by: Stan Grishin <stangri@melmac.net>
* | | | Merge pull request #16224 from commodo/squashfs-toolsJosef Schlehofer2021-07-26
|\ \ \ \ | | | | | | | | | | squashfs-tools: bump to version 4.5
| * | | | squashfs-tools: bump to version 4.5Alexandru Ardelean2021-07-26
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | Drop GCC 10 build patch Adds 2 more utilities which are symlinks to mksquashfs,unsquashfs. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | Merge pull request #16226 from dibdot/masterDirk Brenken2021-07-26
|\ \ \ \ | |_|_|/ |/| | | adblock: bugfix 4.1.3-3
| * | | adblock: bugfix 4.1.3-3Dirk Brenken2021-07-26
| | | | | | | | | | | | | | | | | | | | | | | | * fix regex to prepare google safesearch domains Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | Merge pull request #16163 from stintel/openvswitchStijn Tintel2021-07-26
|\ \ \ \ | |_|/ / |/| | | openvswitch: allow complex port configurations
| * | | openvswitch: allow complex port configurationsStijn Tintel2021-07-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The current way to add ports to an Open vSwitch bridge does not allow complex port configurations. Use a dedicated uci config section per port instead of the current port:type syntax. This way we can easily support more features like setting the VLAN tag or the OpenFlow port number. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * | | openvswitch: only init bridges when (re)startingStijn Tintel2021-07-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Calling the ovs_bridge_init function when stopping the service will result in ovs-vsctl being called after ovsdb-server has been shut down. This causes the following error: ovs-vsctl: unix:/var/run/openvswitch/db.sock: database connection failed (No such file or directory) Calling the ovs_bridge_init function when requesting the service status has no added value. Only call ovs_bridge_init during start or restart to fix this. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * | | openvswitch: refresh patchesStijn Tintel2021-07-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | CI run fails due to dirty patches, so refresh them. Fixes: f4f1a25e80f5 ("openvswitch: bump to version 2.15.0") Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | | | Merge pull request #16221 from dibdot/travelmateDirk Brenken2021-07-26
|\ \ \ \ | | | | | | | | | | travelmate: update to 2.0.4
| * | | | travelmate: update to 2.0.4Dirk Brenken2021-07-25
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * code cleanup * add auto login script for Julianahoeve beach resort (NL) * add auto login script for Vodafone hotspots (DE) * add auto login script for telekom hotspots (DE) * enhance captive portal detection to support html redirects as well * change default captive portal detection url to 'detectportal.firefox.com' Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | Merge pull request #16201 from neheb/rrdRosen Penev2021-07-25
|\ \ \ \ | | | | | | | | | | rrdtool1: don't build docs
| * | | | rrdtool1: don't build docsRosen Penev2021-07-22
| | |/ / | |/| | | | | | | | | | | | | | | | | | Fixes compilation without host pod2man. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #16202 from neheb/routRosen Penev2021-07-25
|\ \ \ \ | |_|/ / |/| | | librouteros: don't build docs
| * | | librouteros: don't build docsRosen Penev2021-07-22
| |/ / | | | | | | | | | | | | | | | Fixes compilation without host pod2man. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | uvol: update to version 0.3Daniel Golle2021-07-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * genrate UCI fstab configs for each volume before first 'up' * remove UCI section on volume remove * use autofs automounter for read-only volumes * try umount on 'down' * emulate hotplug events for UBI volume up/down * more robust error paths Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | Merge pull request #16212 from 1715173329/yqJosef Schlehofer2021-07-24
|\ \ \ | | | | | | | | yq: Update to 4.11.2
| * | | yq: Update to 4.11.2Tianling Shen2021-07-24
|/ / / | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | Merge pull request #16198 from 1715173329/dnsproxyRosen Penev2021-07-23
|\ \ \ | | | | | | | | dnsproxy: Update to 0.39.0 and add init script
| * | | dnsproxy: add basic init scriptTianling Shen2021-07-23
| | | | | | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
| * | | dnsproxy: Update to 0.39.0Tianling Shen2021-07-23
| | | | | | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | | hs20: set PKG_SOURCE_SUBDIRDaniel Golle2021-07-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Building without the mirror-tarballs fails to PKG_SOURCE_SUBDIR not matching the hostapd source subdir name. Fix that. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | Merge pull request #16179 from neheb/BaRosen Penev2021-07-23
|\ \ \ \ | | | | | | | | | | bash: update to 5.1.8
| * | | | bash: update to 5.1.8Rosen Penev2021-07-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Remove upstream backports. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #16178 from neheb/BzRosen Penev2021-07-23
|\ \ \ \ \ | | | | | | | | | | | | bluez: update to 5.60
| * | | | | bluez: update to 5.60Rosen Penev2021-07-21
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Refresh patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #16177 from neheb/CuRosen Penev2021-07-23
|\ \ \ \ \ | | | | | | | | | | | | canutils: uipdate to 2021.06.0
| * | | | | canutils: uipdate to 2021.06.0Rosen Penev2021-07-21
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | Merge pull request #16168 from neheb/SpiRosen Penev2021-07-23
|\ \ \ \ \ | | | | | | | | | | | | spi-tools: update to 1.0.0
| * | | | | spi-tools: update to 1.0.0Rosen Penev2021-07-20
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #16169 from neheb/YaraRosen Penev2021-07-23
|\ \ \ \ \ \ | | | | | | | | | | | | | | yara: update to 4.1.1
| * | | | | | yara: update to 4.1.1Rosen Penev2021-07-20
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove upstreamed patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #16170 from neheb/IperfRosen Penev2021-07-23
|\ \ \ \ \ \ | | | | | | | | | | | | | | iperf: update to 2.1.3
| * | | | | | iperf: update to 2.1.3Rosen Penev2021-07-20
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Remove upstreamed patches. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #16182 from neheb/lkRosen Penev2021-07-23
|\ \ \ \ \ \ | | | | | | | | | | | | | | lksctp-tools: update to 1.0.19
| * | | | | | lksctp-tools: update to 1.0.19Rosen Penev2021-07-21
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switch to AUTORELEASE for simplicity. Remove upstreamed patch. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | Merge pull request #16206 from jmarcet/alsa-lib-fixRosen Penev2021-07-23
|\ \ \ \ \ \ | | | | | | | | | | | | | | alsa-lib: install also /usr/share/alsa/ctl or alsa-mixer fails with:
| * | | | | | alsa-lib: install also /usr/share/alsa/ctl or alsa-mixer fails with:Javier Marcet2021-07-23
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ❯ 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>
* | | | | | cryptsetup: update to version 2.3.6Javier Marcet2021-07-24
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Javier Marcet <javier@marcet.info>