aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* upmpdcli: update to 1.4.9Rosen Penev2020-05-13
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libupnpp: update to 0.19.1Rosen Penev2020-05-13
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* libnpupnp: update to 4.0.3Rosen Penev2020-05-13
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* Merge pull request #12060 from looklookson/masterRosen Penev2020-05-13
|\ | | | | sslh: Add http probe support
| * sslh: Add http probe supportWarren Ng2020-05-03
| | | | | | | | Signed-off-by: Warren Ng <looklookson@gmail.com>
* | Merge pull request #11528 from hroo/lvm2_at_preinitRosen Penev2020-05-13
|\ \ | | | | | | lvm2: Added script and updated Makefile to activate lvm2 at preinit t…
| * | lvm2: Added script and updated Makefile to activate lvm2 at preinit to allow ↵Harrie Rooijackers2020-03-08
| | | | | | | | | | | | | | | | | | overlays on lvm2 partitions for mount_root Signed-off-by: Harrie Rooijackers <Harrie.Rooijackers+OpenWRT@gmail.com>
* | | Merge pull request #11964 from zhanhb/nginx-all-moduleRosen Penev2020-05-13
|\ \ \ | | | | | | | | nginx: update all-module configurations
| * | | nginx: update all-module configurationsHuangbin Zhan2020-04-30
| | | | | | | | | | | | | | | | | | | | | | | | nginx-all-module also provides nginx-ssl and shoud have configuration file uwsgi_params Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* | | | Merge pull request #11981 from zhanhb/conffilesRosen Penev2020-05-13
|\ \ \ \ | | | | | | | | | | treewide: add conffiles
| * | | | treewide: add conffilesHuangbin Zhan2020-05-09
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
* | | | | Merge pull request #12037 from olek210/coremarkRosen Penev2020-05-13
|\ \ \ \ \ | | | | | | | | | | | | coremark: Add coremark package
| * | | | | coremark: Add coremark packageAleksander Jan Bajkowski2020-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Lim Guo Wei <limguowei@gmail.com> Signed-off-by: Aleksander Jan Bajkowski <A.Bajkowski@stud.elka.pw.edu.pl>
* | | | | | Merge pull request #12104 from stintel/readsbRosen Penev2020-05-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | readsb: new package
| * | | | | | readsb: new packageStijn Tintel2020-05-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package is based on dump1090-fa with many modifications. A big advantage over dump1090-fa is that it can connect to multiple services like adsbexchange, piaware or fr24feed. As the idea for this package is mostly to feed other services, the HTML files to serve via a webserver have not been included. The service(s) that will be fed by readsb can offer such a webpage instead. Finally, the init script does not use local variables, as local is undefined in POSIX. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | | | | | | Merge pull request #12146 from kobboi/masterRosen Penev2020-05-13
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | ifstat: make dependency on libnetsnmp conditional
| * | | | | | | ifstat: make dependency on libnetsnmp conditionalChristophe Lermytte2020-05-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The upstream package supports it with a configure switch. Defaulting to 'with SNMP support' as it was before. Signed-off-by: Christophe Lermytte <gentoo@lermytte.be>
* | | | | | | | Merge pull request #12147 from micmac1/my_upRosen Penev2020-05-13
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | mariadb: updates for config, auth-pam and init
| * | | | | | | | mariadb: switch init to mysqld_safe and mysqladminSebastian Kemper2020-05-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mysqld_safe is the recommended way to start the server on non-systemd systems ([1]). For instance, it has a crash detection with auto-restart function, can update ulimits, setup core files, set the niceness of the server etc. It looks like it could also be helpful when trying to set up clusters. It's maintained upstream and adding it means we don't need to add these features into our init script. mysqld_safe is a script itself, so it's added to conffiles in case users want to edit it. It can't be run under procd, so the init script is converted to a normal System V type. To stop the server and to reload the privileges tables mysqladmin is used. To that end mysqladmin is moved into the server package. While changing the init script, the Debian init script was used for ideas. It wasn't copied verbatim and adapted a bit here and there. Thanks to whoever wrote it! This commit removes the support for starting the service as a user other than "mariadb". This makes the init script simpler. If anybody wants to play around with the user then it's up to them to fix the permissions. [1] https://mariadb.com/kb/en/mysqld_safe/ Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * | | | | | | | mariadb: move mysql_upgrade to the client packageSebastian Kemper2020-05-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's really a client. It connects to the running server as a client, to upgrade the DBs. And it depends on both mysql and mysqlcheck. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * | | | | | | | mariadb: update auth_pam handlingSebastian Kemper2020-05-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With INSTALL_PAMDIR undefined some items necessary for the auth_pam module aren't built. This adds the define so that configuration and shared object become available. This commit also tightens up the installation of the SUID tool. The directory it is copied into gets created on the build host already with u=rwx,g=rx,o=, so it cannot be accessed on target, except by root. The post-install script then changes group ownership of the directory to the "mariadb" group only if the directory is really a directory and owned by "root:root". Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * | | | | | | | mariadb: install config files readable for allSebastian Kemper2020-05-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now $(INSTALL_CONF) is used for configuration files that go into /etc/mysql. This commit replaces that with $(INSTALL_DATA). The configuration files are not only parsed by the server, but also by the clients (which can be anybody). This also removes a comment about a cron job from one of the configuration files. There is no cron job. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | | | | | | | jupp: update to 3.1.39Eneas U de Queiroz2020-05-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Among other changes, this fixes compilation with mips16, working around a gcc bug. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | | | | | | | | Merge pull request #12160 from tru7/knxdHannu Nyman2020-05-13
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | knxd: bump to version 0.14.37
| * | | | | | | | | knxd: bump to version 0.14.37Othmar Truniger2020-05-13
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | | | | | | Merge pull request #11159 from jmarcet/ctopRosen Penev2020-05-12
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | ctop: top-like interface for container metrics
| * | | | | | | | | ctop: top-like interface for container metricsJavier Marcet2020-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* | | | | | | | | | Merge pull request #12137 from neheb/webpRosen Penev2020-05-12
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | libwebp: update to 1.1.0
| * | | | | | | | | | libwebp: switch to CMakeRosen Penev2020-05-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows simplifying the Makefile. Signed-off-by: Rosen Penev <rosenp@gmail.com>
| * | | | | | | | | | libwebp: update to 1.1.0Rosen Penev2020-05-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | | | | | | | Merge pull request #12157 from oleg-derevenetz/bwping-1.17Rosen Penev2020-05-12
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | bwping: update to version 1.17
| * | | | | | | | | | | bwping: update to version 1.17Oleg Derevenetz2020-05-12
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Oleg Derevenetz <oleg-derevenetz@yandex.ru>
* | | | | | | | | | | Merge pull request #12153 from cotequeiroz/libreswan_linux4.14Hannu Nyman2020-05-12
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | libreswan: fix compilation with Linux 4.14
| * | | | | | | | | | | libreswan: fix compilation with Linux 4.14Eneas U de Queiroz2020-05-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to a comment in programs/pluto/kernel_xfrm_interface.c:177: * IFLA_XFRM_IF_ID was added to mainline kernel 4.19 linux/if_link.h with older kernel headers 'make USE_XFRM_INTERFACE_IFLA_HEADER=true' Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | | | | | | | | | | | Merge pull request #12118 from micmac1/ssh2-bdepJiri Slachta2020-05-12
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | | libssh2: add mbedtls to PKG_BUILD_DEPENDS
| * | | | | | | | | | | libssh2: switch default to OpenSSL and fix dependsSebastian Kemper2020-05-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All packages in the tree that depend on libssh2 _and_ have their own dependency on a TLS library, depend on OpenSSL by default. It makes sense for the libssh2 package to default to OpenSSL as well. This way it does not pull in a second TLS library. Also, the OpenSSL dependency is changed to "+!LIBSSH2_MBEDTLS:libopenssl", which fixes build issues in case libssh2 is not selected but built anyway. And last, Config.in file is removed and its content added to the Makefile instead. Closes #12108 Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | | | | | | | | | | | Merge pull request #12152 from jefferyto/aarch64-vfp-neonRosen Penev2020-05-12
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | treewide: Enable VFP/NEON optimizations for aarch64
| * | | | | | | | | | | | treewide: Enable VFP/NEON optimizations for aarch64Jeffery To2020-05-12
| | |_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For speexdsp, support for NEON on aarch64 was added in 1.2.0[1]. [1]: https://github.com/xiph/speexdsp/pull/8 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | | | | | | | Merge pull request #12148 from ja-pa/python3-maxminddb-updateHannu Nyman2020-05-12
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | python3-maxminddb: update to version 1.5.4
| * | | | | | | | | | | | python3-maxminddb: update to version 1.5.4Jan Pavlinec2020-05-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | | | | | | | | | | | | Merge pull request #12143 from commodo/django-updateHannu Nyman2020-05-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | django: bump to version 3.0.6
| * | | | | | | | | | | | | django: bump to version 3.0.6Alexandru Ardelean2020-05-12
| | |_|_|/ / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also add 'Peter Stadler <peter.stadler@student.uibk.ac.at>' as co-maintainer. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | | | | | | | | | netifyd: support uci parametersKevin Darbyshire-Bryant2020-05-12
| |_|_|_|_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Integrate with uci to support 'enabled/disabled' startup option and override netify's default auto network selection. config netifyd option enabled 0 option autoconfig 1 autoconfig: Use netify's in-built interface selection else use 'internal/external_if' definitions. Also persist important agent config across sysupgrade agent.uuid, serial.uuid, site.uuid Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
* | | | | | | | | | | | Merge pull request #12145 from tru7/libfmtHannu Nyman2020-05-11
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / |/| | | | | | | | | | | libfmt: bump to version 6.2.1
| * | | | | | | | | | | libfmt: bump to version 6.2.1Othmar Truniger2020-05-11
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | | | | | | | | Merge pull request #12121 from 4wrxb/acme_dns_caliasToke Høiland-Jørgensen2020-05-11
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | acme: Update acme.sh URL, add support for challenge & domain alises.
| * | | | | | | | | | | acme: Update acme.sh URL, add support for challenge & domain alises.Will O'Neill2020-05-10
| | |_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Will O'Neill <0100wrxb@gmail.com>
* | | | | | | | | | | qemu: bump to version 5.0.0Yousong Zhou2020-05-11
| |/ / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The slirp patch was included in this QEMU release CXX_DEPENDS is now added for all host components otherwise we get errors like the following Package qemu-img is missing dependencies for the following libraries: libuClibc++.so.0 Package qemu-nbd is missing dependencies for the following libraries: libuClibc++.so.0 --disable-bluez was removed from configure args because upstream deprecated bluetooth subsystem since qemu v3.1 and remove the code in commit 1d4ffe8dc77c ("Remove the core bluetooth code") Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | | | | | | Merge pull request #12113 from cotequeiroz/openzwaveRosen Penev2020-05-10
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | openzwave: avoid /usr/include in libopenzwave.pc
| * | | | | | | | | | openzwave: avoid /usr/include in libopenzwave.pcEneas U de Queiroz2020-05-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a line in Build/InstallDev to change a hardcoded '/usr/include' definition in the staging_dir libopenzwave.pc file to use ${prefix}/include instead. Otherwise dependent packages may fail to find them. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>