Karl Palsson [Sat, 12 Oct 2019 13:45:20 +0000 (13:45 +0000)]
luaposix: disable documentation build
Lost when luaposix converted their upstream build system.
Required to prevent the build from attempting to invoke "ldoc" on the
host and also simply to speed it up.
Signed-off-by: Karl Palsson <karlp@tweak.net.au>
Hannu Nyman [Sat, 12 Oct 2019 11:46:06 +0000 (14:46 +0300)]
Merge pull request #10193 from Ansuel/nginx-sock
nginx: adds new socket to luci uwsgi config
Ansuel Smith [Wed, 9 Oct 2019 18:30:14 +0000 (20:30 +0200)]
nginx: adds new socket to luci uwsgi config
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Hannu Nyman [Sat, 12 Oct 2019 10:47:08 +0000 (13:47 +0300)]
Merge pull request #10171 from neheb/gam2
gammu: Update to 1.41
Gerard Ryan [Sat, 17 Aug 2019 11:44:29 +0000 (21:44 +1000)]
cache-domains: added game cache DNS config service
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
Rosen Penev [Sat, 12 Oct 2019 07:20:16 +0000 (00:20 -0700)]
Merge pull request #10207 from dengqf6/upnpd
miniupnpd: update to 2.1.
20191006
DENG Qingfang [Sat, 12 Oct 2019 06:36:55 +0000 (14:36 +0800)]
miniupnpd: update to 2.1.
20191006
Removed upstreamed patch:
100-build-on-OpenWrt.patch
Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
Hannu Nyman [Sat, 12 Oct 2019 06:39:47 +0000 (09:39 +0300)]
Merge pull request #10173 from Ansuel/uwsgi-fix
uwsgi-cgi: adds patch to fix #10134
Rosen Penev [Fri, 11 Oct 2019 20:14:54 +0000 (13:14 -0700)]
Merge pull request #10196 from lucize/nssup
nss: update to 3.46.1
Rosen Penev [Fri, 11 Oct 2019 19:50:06 +0000 (12:50 -0700)]
Merge pull request #10119 from BKPepe/debootstrap
debootstrap: Update to version 1.0.115~bpo10+1
Rosen Penev [Fri, 11 Oct 2019 19:49:22 +0000 (12:49 -0700)]
Merge pull request #10107 from BKPepe/expat
expat: Update to version 2.2.9
Rosen Penev [Fri, 11 Oct 2019 19:45:40 +0000 (12:45 -0700)]
Merge pull request #10160 from G-M0N3Y-2503/feature_docker-ce_update
docker-ce: Updated to 19.03.2
Rosen Penev [Fri, 11 Oct 2019 19:45:25 +0000 (12:45 -0700)]
Merge pull request #10159 from jefferyto/shinit
shinit: Add package
Petr Štetiar [Fri, 11 Oct 2019 13:07:17 +0000 (15:07 +0200)]
cgi-io: iron out extra compiler warnings
Fixes following errors:
main.c:458:37: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare]
main.c:463:17: error: comparison of integer expressions of different signedness: ‘int’ and ‘long unsigned int’ [-Werror=sign-compare]
main.c:518:35: error: comparison of integer expressions of different signedness: ‘ssize_t’ {aka ‘long int’} and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare]
main.c:157:3: error: ignoring return value of ‘read’, declared with attribute warn_unused_result [-Werror=unused-result]
main.c:763:3: error: ignoring return value of ‘chdir’, declared with attribute warn_unused_result [-Werror=unused-result]
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Petr Štetiar [Fri, 11 Oct 2019 13:03:04 +0000 (15:03 +0200)]
cgi-io: cmake: enable extra compiler warnings
Spotting issues during compilation is cheaper.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Petr Štetiar [Fri, 11 Oct 2019 13:01:42 +0000 (15:01 +0200)]
cgi-io: cmake: fix libraries lookup
In order to make it compile properly in more environments.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Jo-Philipp Wich [Fri, 11 Oct 2019 10:10:47 +0000 (12:10 +0200)]
Merge pull request #10191 from Ansuel/cgi-io-fix
cgi-io: fix various errors
Rosen Penev [Fri, 11 Oct 2019 03:08:54 +0000 (20:08 -0700)]
mosh: Add protobuf host build dependency
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Ansuel Smith [Thu, 10 Oct 2019 22:31:36 +0000 (00:31 +0200)]
uwsgi-cgi: adds luci webui and cgi-io vassals config
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Ansuel Smith [Thu, 10 Oct 2019 22:30:45 +0000 (00:30 +0200)]
uwsgi-cgi: introduce emperor mode as default uwsgi installation
- Use uwsgi in emperor mode by default
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Ansuel Smith [Wed, 9 Oct 2019 18:11:51 +0000 (20:11 +0200)]
uwsgi-cgi: add patch to fix #10134
- add uwsgi patch to add option to don't follow simbolic link but call it directly (waiting to be approved)
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Rosen Penev [Thu, 10 Oct 2019 20:25:40 +0000 (13:25 -0700)]
Merge pull request #9150 from lucize/uacme
uacme: add package
Ansuel Smith [Tue, 8 Oct 2019 20:34:11 +0000 (22:34 +0200)]
cgi-io: fix read after end errors
Currently cgi-io try to read data after the data ended.
- Adds "-" to whitelist char
- In main_upload is tried to consume the buffer while it's already readed by the while loop before
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Lucian Cristian [Thu, 10 Oct 2019 16:06:15 +0000 (19:06 +0300)]
nss: update to 3.46.1
and clean some comments
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
Lucian Cristian [Sun, 29 Sep 2019 14:33:56 +0000 (17:33 +0300)]
uacme: add package
lightweight client for the RFC8555 ACMEv2 protocol, written in plain C code
with minimal dependencies (libcurl and one of GnuTLS, OpenSSL or mbedTLS).
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
Jan Pavlinec [Wed, 9 Oct 2019 12:35:15 +0000 (14:35 +0200)]
tor: update to 0.4.1.6
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
Rosen Penev [Thu, 10 Oct 2019 01:57:45 +0000 (18:57 -0700)]
Merge pull request #10194 from nickberry17/master
modemmanager: remove check for unneeded host dependency intltool
Nicholas Smith [Wed, 9 Oct 2019 22:30:26 +0000 (08:30 +1000)]
modemmanager: remove check for unneeded host dependency intltool
Signed-off-by: Nicholas Smith <nicholas.smith@telcoantennas.com.au>
Rosen Penev [Wed, 9 Oct 2019 19:50:07 +0000 (12:50 -0700)]
Merge pull request #10182 from jefferyto/python-attrs-19.2.0
python-attrs: Update to 19.2.0
Rosen Penev [Wed, 9 Oct 2019 19:46:00 +0000 (12:46 -0700)]
Merge pull request #10170 from ewsi/feature_dcwifi_1.1
dcwifi: Update component versions
Rosen Penev [Wed, 9 Oct 2019 19:43:20 +0000 (12:43 -0700)]
Merge pull request #10187 from commodo/python-asn1crypto-update
python-asn1crypto: bump to version 1.0.1
Rosen Penev [Wed, 9 Oct 2019 19:42:58 +0000 (12:42 -0700)]
Merge pull request #10185 from commodo/python-pillow-update
python-pillow: bump to version 6.2.0
Dirk Brenken [Wed, 9 Oct 2019 17:04:39 +0000 (19:04 +0200)]
Merge pull request #10189 from dibdot/banIP
banip: update 0.3.1
Carey Sonsino [Mon, 30 Sep 2019 14:14:02 +0000 (14:14 +0000)]
dcwifi: Update component versions
update package versions and hashes
remove bzero patches
remove uclibc++ patch
refactor directory structure
relocate mrmctl in menuconfig
update macremapper patch
Signed-off-by: Carey Sonsino <careys@edgewaterwireless.com>
Signed-off-by: Carey Sonsino <csonsino@gmail.com>
Karl Palsson [Wed, 9 Oct 2019 13:50:14 +0000 (13:50 +0000)]
net/mosquitto: drop obsolete libuuid dependency
libuuid was dropped as a dependency in mosquitto 1.6.0
Signed-off-by: Karl Palsson <karlp@etactica.com>
Dirk Brenken [Wed, 9 Oct 2019 12:07:05 +0000 (14:07 +0200)]
banip: update 0.3.1
* the WAN auto detection now supports multiple interfaces, too
* no longer filter out possible LAN devices
* add a new DoH (DNS over HTTPS) blocklist source with public
DoH DNS server addresses, to effectively block client side DoH
communication, e.g. via Firefox or Chrome
Signed-off-by: Dirk Brenken <dev@brenken.org>
Alexandru Ardelean [Wed, 9 Oct 2019 10:23:28 +0000 (13:23 +0300)]
python-asn1crypto: bump to version 1.0.1
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
Alexandru Ardelean [Wed, 9 Oct 2019 08:53:46 +0000 (11:53 +0300)]
python-pillow: bump to version 6.2.0
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
Jeffery To [Tue, 8 Oct 2019 21:18:44 +0000 (05:18 +0800)]
python-attrs: Update to 19.2.0
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Eneas U de Queiroz [Tue, 8 Oct 2019 21:10:49 +0000 (18:10 -0300)]
icu: Revert "icu: Deactivate uClibc"
This reverts commit
db424ede2f079f2bf73634d30ec3c59a8a782118.
It is causing recursive dependencies.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
Rosen Penev [Tue, 8 Oct 2019 08:12:34 +0000 (01:12 -0700)]
Merge pull request #10180 from nxhack/icu_uclibc
icu: Deactivate uClibc
Hirokazu MORIKAWA [Tue, 8 Oct 2019 08:01:59 +0000 (17:01 +0900)]
icu: Deactivate uClibc
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
Rosen Penev [Tue, 8 Oct 2019 04:26:06 +0000 (21:26 -0700)]
Merge pull request #10113 from dhewg/pull/libid3tag
libid3tag: add pkg-config file
Rosen Penev [Tue, 8 Oct 2019 04:20:55 +0000 (21:20 -0700)]
Merge pull request #10038 from tiagogaspar8/kea-fix
kea: fix makefile and dependencies
Rosen Penev [Fri, 4 Oct 2019 00:35:25 +0000 (17:35 -0700)]
gammu: Update to 1.41
Remove upstreamed patch.
Switched conditional dependency to python3 in preparation for deprecating
Python 2.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Tue, 8 Oct 2019 04:18:17 +0000 (21:18 -0700)]
Merge pull request #10175 from nxhack/icu_65_1
icu: update to 65.1
Rosen Penev [Tue, 8 Oct 2019 04:13:01 +0000 (21:13 -0700)]
Merge pull request #10177 from kuoruan/aria2
aria2: Update to 1.35.0
Xingwang Liao [Tue, 8 Oct 2019 02:04:53 +0000 (10:04 +0800)]
aria2: Update to 1.35.0
* remove OpenSSL patch, it has already merged to the source.
Signed-off-by: Xingwang Liao <kuoruan@gmail.com>
Hirokazu MORIKAWA [Mon, 7 Oct 2019 00:46:53 +0000 (09:46 +0900)]
icu: update to 65.1
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
Andre Heider [Mon, 30 Sep 2019 07:40:03 +0000 (09:40 +0200)]
libid3tag: add pkg-config file
Required for meson to find this library in a sane way.
Signed-off-by: Andre Heider <a.heider@gmail.com>
Rosen Penev [Mon, 7 Oct 2019 17:58:14 +0000 (10:58 -0700)]
fbzmq: Update to 2019.10.07.00
Added patch that adds libfolly boost dependencies.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Mon, 7 Oct 2019 17:54:24 +0000 (10:54 -0700)]
fbthrift: Update to 2019.10.07.00
Added patch to remove boost-thread dependency.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Mon, 7 Oct 2019 17:50:41 +0000 (10:50 -0700)]
librsocket-cpp: Update to 2019-10-07
Added patch to remove boost-thread dependency.
Added size optimizations.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Mon, 7 Oct 2019 17:41:19 +0000 (10:41 -0700)]
libwangle: Update to 2019.10.07.00
Added patch to remove boost-thread dependency.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Mon, 7 Oct 2019 17:38:28 +0000 (10:38 -0700)]
libfizz: Update to 2019.10.07.00
Add patch removing boost-thread dependency.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Mon, 7 Oct 2019 17:32:50 +0000 (10:32 -0700)]
libfolly: Update to 2019.10.07.00
Added patch to remove boost-thread.
Removed uClibc-ng patch. libfolly no longer builds there.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Hannu Nyman [Mon, 7 Oct 2019 15:17:03 +0000 (18:17 +0300)]
nano: update to 4.5
Update nano editor to version 4.5.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Hannu Nyman [Mon, 7 Oct 2019 15:08:41 +0000 (18:08 +0300)]
Merge pull request #10163 from stangri/master-simple-adblock
simple-adblock: bugfix: proper dnsmasq reload on stop, rework start/stop logic
Michael Heimpold [Mon, 7 Oct 2019 10:50:13 +0000 (12:50 +0200)]
Merge pull request #9137 from nickberry17/master
modemmanager: add ModemManager to packages
This also includes related libraries libmbim and libqmi and the command line tools.
Josef Schlehofer [Sun, 6 Oct 2019 23:10:47 +0000 (01:10 +0200)]
Merge pull request #10146 from BKPepe/unbound
unbound: Update to version 1.9.4
Stan Grishin [Sun, 6 Oct 2019 16:33:33 +0000 (09:33 -0700)]
simple-adblock: bugfix: proper dnsmasq reload on stop, rework start/stop logic
Signed-off-by: Stan Grishin <stangri@melmac.net>
Gerard Ryan [Fri, 4 Oct 2019 11:48:43 +0000 (21:48 +1000)]
docker-ce: Updated to 19.03.2
* Added warning logging
* Added missing default kmod
* Added missing kernel feature for IO scheduling
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
Jeffery To [Sat, 5 Oct 2019 21:48:25 +0000 (05:48 +0800)]
shinit: Add package
This package adds support for /etc/shinit and ~/.shinit files, which
contain commands to be run at the start of all interactive shells.
(/etc/profile and ~/.profile are read for login shells only.)
This is useful for those who regularly open non-login, interactive
shells, for example users of GNU Screen or tmux.
(This is based on a patch[1] I submitted for OpenWrt master, but there
does not appear to be much interest in merging the change.)
(This package uses the ENV shell variable, of which the POSIX standard
has a brief description[2]. The dash manpage[3] also describes how the
ENV variable is handled. (dash is the basis for busybox ash.))
[1]: https://patchwork.ozlabs.org/patch/
1094493/
[2]: https://pubs.opengroup.org/onlinepubs/
9699919799//utilities/V3_chap02.html#tag_18_05_03
[3]: https://manpages.debian.org/buster/dash/dash.1.en.html#Invocation
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Rosen Penev [Sat, 5 Oct 2019 19:15:51 +0000 (12:15 -0700)]
Merge pull request #10105 from neheb/ffm
ffmpeg: Fix pkgconfig files to be more cross compile friendly
Rosen Penev [Sat, 5 Oct 2019 19:15:42 +0000 (12:15 -0700)]
Merge pull request #10106 from neheb/avah
avahi: Fix pkgconfig files to be cross compile friendly
Hannu Nyman [Sat, 5 Oct 2019 14:17:20 +0000 (17:17 +0300)]
Merge pull request #10157 from gladiac1337/haproxy-2.0.7
haproxy: Update HAProxy to v2.0.7
Christian Lachner [Sat, 5 Oct 2019 11:59:57 +0000 (13:59 +0200)]
haproxy: Update HAProxy to v2.0.7
- Update haproxy download URL and hash
- Add new patches (see https://www.haproxy.org/bugs/bugs-2.0.7.html)
Signed-off-by: Christian Lachner <gladiac@gmail.com>
Hannu Nyman [Sat, 5 Oct 2019 08:27:20 +0000 (11:27 +0300)]
Merge pull request #10151 from jefferyto/python-bpo-38243-34155
python,python3: Fix CVE-2019-16056, CVE-2019-16935
Hannu Nyman [Sat, 5 Oct 2019 08:25:44 +0000 (11:25 +0300)]
Merge pull request #10142 from stangri/master-simple-adblock
simple-adblock: bugfix and improvements (check description)
Rosen Penev [Fri, 4 Oct 2019 16:49:18 +0000 (09:49 -0700)]
Merge pull request #10147 from ryzhovau/icu_python
icu: use our own python3 for host-compilation
Dirk Brenken [Fri, 4 Oct 2019 16:21:43 +0000 (18:21 +0200)]
Merge pull request #10145 from dibdot/banIP
banip: update 0.3.0
Jeffery To [Fri, 4 Oct 2019 15:54:46 +0000 (23:54 +0800)]
python,python3: Fix CVE-2019-16056, CVE-2019-16935
These patches address issues:
CVE-2019-16056: email.utils.parseaddr mistakenly parse an email
CVE-2019-16935: A reflected XSS in python/Lib/DocXMLRPCServer.py (for
Python 2.7)
CVE-2019-16935 was fixed for python3 in #10109
Links to Python issues:
https://bugs.python.org/issue34155
https://bugs.python.org/issue38243
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Jeffery To [Fri, 4 Oct 2019 14:40:25 +0000 (22:40 +0800)]
python-simplejson: Fix python[3]-decimal dependency
simplejson depends on the decimal module[1][2]. This adds
python[3]-decimal to the package's DEPENDS.
[1]: https://github.com/simplejson/simplejson/blob/v3.16.0/simplejson/__init__.py#L110
[2]: https://github.com/simplejson/simplejson/blob/v3.16.0/simplejson/encoder.py#L7
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Alexander Ryzhov [Fri, 4 Oct 2019 13:36:47 +0000 (16:36 +0300)]
icu: use our own python3 for host-compilation
Signed-off-by: Alexander Ryzhov <github@ryzhov-al.ru>
Josef Schlehofer [Fri, 4 Oct 2019 09:57:24 +0000 (11:57 +0200)]
unbound: Update to version 1.9.4
Fixes CVE-2019-16866
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Dirk Brenken [Fri, 4 Oct 2019 07:12:11 +0000 (09:12 +0200)]
banip: update 0.3.0
* new 'ca-bundle' dependency as all https connections
are now validated by default
* automatically select the download utility: 'aria2', 'curl',
'uclient-fetch' with libustream-* or wget are supported
* track & ban failed LuCI login attempts as well
* add a small log/banIP background monitor to block
SSH/LuCI brute force attacks in realtime (disabled by default)
* add a config version check (please update your default config!)
* made the automatic wan detection more stable
* fix the IPv6 logfile parser
* fix the service status message
* update readme
Signed-off-by: Dirk Brenken <dev@brenken.org>
Stan Grishin [Fri, 4 Oct 2019 01:41:49 +0000 (18:41 -0700)]
simple-adblock: bugfix and improvements (check description)
Signed-off-by: Stan Grishin <stangri@melmac.net>
Rosen Penev [Thu, 3 Oct 2019 23:22:38 +0000 (16:22 -0700)]
nbd: Remove other build dependency
Already satisfied by glib2.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Thu, 3 Oct 2019 22:51:22 +0000 (15:51 -0700)]
Merge pull request #10131 from neheb/jool
jool: Update to 4.0.5
Michael Heimpold [Thu, 3 Oct 2019 12:32:46 +0000 (14:32 +0200)]
Merge pull request #10126 from stefaang/php7-mod-gd
php7-mod-gd: enable libwebp
php7: bump to 7.2.23
Stefaan Ghysels [Thu, 3 Oct 2019 11:44:23 +0000 (13:44 +0200)]
php7: bump to 7.2.23
Signed-off-by: Stefaan Ghysels <stefaang@gmail.com>
Stefaan Ghysels [Thu, 3 Oct 2019 11:42:38 +0000 (13:42 +0200)]
php7-mod-gd: enable libwebp
Signed-off-by: Stefaan Ghysels <stefaang@gmail.com>
Rosen Penev [Thu, 3 Oct 2019 01:54:43 +0000 (18:54 -0700)]
nbd: Remove glib2 build dependency
It is already included.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Thu, 3 Oct 2019 01:53:50 +0000 (18:53 -0700)]
libftdi: Don't build examples
Compilation fix with uClibc-ng. No change in package.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Wed, 2 Oct 2019 22:08:42 +0000 (15:08 -0700)]
vala: Update to 0.46.2
Removed inactive maintainer.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Rosen Penev [Wed, 2 Oct 2019 19:40:02 +0000 (12:40 -0700)]
Merge pull request #9972 from ewsi/feature_dcwifi
dcwifi: Add Dual Channel Wi-Fi component packages
Rosen Penev [Wed, 2 Oct 2019 19:37:06 +0000 (12:37 -0700)]
Merge pull request #10121 from BKPepe/werkzeug
Werkzeug: Update to version 0.16.0
Rosen Penev [Wed, 2 Oct 2019 19:36:11 +0000 (12:36 -0700)]
Merge pull request #10122 from BKPepe/flask
Flask: Update to version 1.1.1
Rosen Penev [Wed, 2 Oct 2019 18:29:34 +0000 (11:29 -0700)]
Merge pull request #10124 from tiagogaspar8/procps-ng-fix
procps-ng: change default package selection
Carey Sonsino [Thu, 12 Sep 2019 00:36:26 +0000 (00:36 +0000)]
dcwifi: Add Dual Channel Wi-Fi component packages
dcstad: Dual Channel Wi-Fi Station Daemon
dcwapd: Dual Channel Wi-Fi Access Point Daemon
libdcwproto: Dual Channel Wi-Fi Protocol Library
libdcwsocket: Dual Channel Wi-Fi Socket Library
macremapper: MAC Address Remapper Linux Kernel Module
mrmctl: Userland tool to get/set remap rules
Signed-off-by: Carey Sonsino <careys@edgewaterwireless.com>
Signed-off-by: Carey Sonsino <csonsino@gmail.com>
Much help from @neheb
Rosen Penev [Wed, 25 Sep 2019 00:23:44 +0000 (17:23 -0700)]
jool: Update to 4.0.5
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Tiago Gaspar [Tue, 1 Oct 2019 21:57:12 +0000 (22:57 +0100)]
procps-ng: change default package selection Change the default selection of packages from all to none.
Signed-off-by: Tiago Gaspar <tiagogaspar8@gmail.com>
Hannu Nyman [Tue, 1 Oct 2019 20:03:15 +0000 (23:03 +0300)]
haveged: convert to procd
Convert haveged init script to use procd
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Hannu Nyman [Tue, 1 Oct 2019 18:59:56 +0000 (21:59 +0300)]
Merge pull request #10129 from philenotfound/mutt-bump
mutt: bump to 1.12.2
Phil Eichinger [Tue, 1 Oct 2019 14:20:52 +0000 (16:20 +0200)]
mutt: bump to 1.12.2
Signed-off-by: Phil Eichinger <phil@zankapfel.net>
Hannu Nyman [Tue, 1 Oct 2019 18:38:11 +0000 (21:38 +0300)]
haveged: update to 1.9.8
Update haveged to 1.9.8
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Nuno Goncalves [Wed, 10 Oct 2018 06:15:23 +0000 (08:15 +0200)]
watchcat: make compatible with updated busybox ash array handling
Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
Tiago Gaspar [Tue, 1 Oct 2019 01:05:15 +0000 (02:05 +0100)]
kea: remove dependency and reduce file size
Remove boost-python3 dependency and reduce file size of the compiled
kea-libs
Signed-off-by: Tiago Gaspar <tiagogaspar8@gmail.com>
Tiago Gaspar [Tue, 1 Oct 2019 01:03:21 +0000 (02:03 +0100)]
kea: fix kea-admin dependency
Fix kea-admin dependency where if procps-ng-ps wasn't available busybox
would output an error casuse it does't support showing a processe's PID
Signed-off-by: Tiago Gaspar <tiagogaspar8@gmail.com>
Tiago Gaspar [Tue, 1 Oct 2019 00:59:36 +0000 (01:59 +0100)]
kea: fix and improve makefile
Fix an issue where the Makefile wouldn't allow kea to show up in the
menuconfig Also added some description to the packages
Signed-off-by: Tiago Gaspar <tiagogaspar8@gmail.com>