Commit graph

3501 commits

Author SHA1 Message Date
Jianhui Zhao
028732a159 rtty: update to 7.3.2
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-02-06 22:28:25 +08:00
Nick Hainke
93ff4cc743 collectd: add plugin to compare ipv4,ipv6 stats
Add "ipstatistics"-plugin. This plugin parses "/proc/net/netstat" and
"/proc/net/snmp6" to get the overall ipv4 and ipv6 usage.

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-02-04 09:26:49 +02:00
Andre Heider
43c0f0486e prometheus-node-exporter-lua: use the new ubus dsl metrics
This is significantly faster.

Signed-off-by: Andre Heider <a.heider@gmail.com>
2021-02-04 06:14:37 +01:00
Rosen Penev
cba6a9897d
Merge pull request #14600 from PolynomialDivision/update-node-exporter
prometheus-node-exporter-lua: update netstat
2021-02-03 14:55:55 -08:00
Rosen Penev
db4e2c6142
Merge pull request #14633 from qinyuhang/patch-1
dockerd: change dockerd start level to 99 to avoid unknown conflicts
2021-02-03 14:51:06 -08:00
Yuhang Qin
ab472b3fdf dockerd: change start level to 99
Dockerd start too early will conflict with other net config.
After boot must manually restart dockerd, Or some container will not run.

Signed-off-by: Yuhang Qin <qinyuhangxiaoxiang@gmail.com>
2021-02-03 13:33:39 +08:00
Alexandru Ardelean
63503163a5 stress-ng: bump to version 0.12.02
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-02-02 16:23:01 +02:00
Jianhui Zhao
f69909eca0 rtty: update to 7.3.1
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-02-01 16:34:42 +02:00
Rosen Penev
c8e2d56a5a
Merge pull request #14609 from httpstorm/hwdata-0.343.fix-macos
hwdata 0.343: fix build error on macOS
2021-02-01 01:07:10 -08:00
Georgi Valkov
884d3fa691 hwdata: fix build error on macOS
The install command on macOS does not support the -T flag.
As suggested by Rosen Penev, this package does not compile anything,
so the contents can be installed directly.

Signed-off-by: Georgi Valkov <gvalkov@abv.bg>
2021-02-01 10:17:23 +02:00
Rosen Penev
64c9fcb708
btrfs-progs: update to 5.10
Added libmount dependency as it's needed now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-31 15:27:54 -08:00
W. Michael Petullo
ba4839f3c7 quota: update to 4.06
This includes a backport of quota commit 02b222a3, which removes the
use of reallocarray. The musl C library does not provide reallocarray.

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-01-31 13:35:42 +02:00
Jianhui Zhao
7455549ed9 rtty: update to 7.3.0
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-01-29 07:56:53 -10:00
Nick Hainke
1ead520e0d prometheus-node-exporter-lua: update netstat
The snmp and netstat interface are enabled by default
See: 4943bc5cff47a482c3010033e04c6d489a4b733c

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-01-28 23:56:35 +01:00
Rosen Penev
9a56e4e0ec
Merge pull request #14542 from PolynomialDivision/sipcalc-use-autorelease
sipcalc: use autorelease feature
2021-01-28 13:39:23 -08:00
Rosen Penev
2ef5960a61
Merge pull request #14595 from jmarcet/docker-compose-update
docker-compose: Update to version 1.28.2
2021-01-28 13:38:56 -08:00
Rosen Penev
e958a3424b apk: fix compilation without deprecated OpenSSL APIs
Upstream Backport.

Refreshed patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-28 09:01:21 -10:00
Hannu Nyman
1d07e993bb
Merge pull request #14568 from PolynomialDivision/collectd-fix-snmp6
collectd: refactor snmp6
2021-01-28 19:01:03 +02:00
Ilya Lipnitskiy
72563ff93b gl-mifi-mcu: compatibility with linux >= 5.6
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
2021-01-28 07:53:11 +01:00
Javier Marcet
8b9b36035c docker-compose: Update to version 1.28.2
Bugs:

- Revert to Python 3.7 bump for Linux static builds

- Add bash completion for docker-compose logs|up --no-log-prefix

Miscellaneous:

- CI setup update

Signed-off-by: Javier Marcet <javier@marcet.info>
2021-01-28 03:30:13 +01:00
Jianhui Zhao
da7858204b rtty: update to 7.2.3
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-01-27 17:51:27 +02:00
Paul Spooren
477081779f apk: add package
The Alpine Package Keeper is the default package manager for Alpine
Linux. They manage their own repositoriy with thousends of packages and
as musl is used for compilation, their binaries can directly run on
OpenWrt.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-01-26 19:46:02 -10:00
Nick Hainke
213c694b75 collectd: snmp6 further improvements
Return with "-1" if parsing fails in read function.
Reduce buffersize of splitstring function.

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-01-26 14:47:28 +01:00
Nick Hainke
922e5b1a8b collectd: fix snmp6 not showing all interfaces
Getifaddrs() is not working all the time (e.g. wireguard interfaces).
Instead we use if_nameindex() syscall as suggested in:
 https://stackoverflow.com/a/45796495/8474618

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-01-25 21:23:40 +01:00
Vladimir Ulrich
d92f087340 zoneinfo: Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2021-01-25 21:41:59 +02:00
Tianling Shen
f10983d9fd
yq: Update to v4.4.1
Signed-off-by: Tianling Shen <cnsztl@project-openwrt.eu.org>
2021-01-23 22:58:52 +08:00
Nick Hainke
6a9febd05d sipcalc: use autorelease feature
Package version is automatically increased as described here:
https://github.com/openwrt/packages/issues/14537

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-01-23 15:06:11 +01:00
Yanase Yuki
1bd309e410 hwdata: update to 0.343
Signed-off-by: Yanase Yuki <dev@zpc.sakura.ne.jp>
2021-01-23 20:05:19 +09:00
Jianhui Zhao
dac73c5c9c rtty: update to 7.2.1
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-01-21 22:02:29 +08:00
Javier Marcet
737110b415 docker-compose: update to v1.28.0
Features:

 - Support for Nvidia GPUs via device requests

 - Support for service profiles

 - Change the SSH connection approach to the Docker CLI's via shellout to the local SSH client (old behaviour enabled by setting COMPOSE_PARAMIKO_SSH environment variable)

 - Add flag to disable log prefix

 - Add flag for ansi output control

Bugs:

 - Make parallel_pull=True by default

 - Bring back warning for configs in non-swarm mode

 - Take --file in account when defining project_dir

 - On compose up, attach only to services we read logs from

Signed-off-by: Javier Marcet <javier@marcet.info>
2021-01-20 17:13:53 +00:00
Jianhui Zhao
b736db93a4 rtty: update to 7.2.0
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-01-19 22:07:26 +08:00
Rosen Penev
30d8b97983
Merge pull request #14493 from neheb/gp
gptfdisk: update to 1.0.6
2021-01-17 15:31:10 -08:00
Rosen Penev
d75d71bde2 fuse3: update to 3.10.1
Remove upstreamed patches. Meaningless as uClibc-ng is gone now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-17 15:09:52 -08:00
Rosen Penev
816961484c gptfdisk: update to 1.0.6
Remove all uclibcxx support. It's buggy and fairly dead upstream.

Remove libcxx linker hack attributed to glibc.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-17 15:03:48 -08:00
Daniel Golle
9811b829e4
conmon: update to version 2.0.24
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-01-17 18:59:33 +00:00
Shuanglei Tao
2a58132ef2 ttyd: update to 1.6.3
Signed-off-by: Shuanglei Tao <tsl0922@gmail.com>
2021-01-16 09:11:15 +08:00
Daniel Golle
83d81616c5 podman: fix build on MIPS
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-15 23:37:57 +00:00
Hannu Nyman
be75f77973 nano: update to 5.5
Update nano editor to version 5.5

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2021-01-15 15:54:41 +02:00
Luiz Angelo Daros de Luca
bf4340e19e sane-backends: revert BUILDONLY flag
BUILDONLY was disabling SANE backends (drivers) build.

Closes #14484

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
2021-01-15 00:03:18 -03:00
Paul Spooren
f7589c4957 syncthing: bump to 1.12.1
Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-01-13 13:37:08 -10:00
Paul Spooren
75458e78a8 syncthing: bump to 1.12.0
Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-01-12 14:52:45 -10:00
Nick Hainke
014551314e collectd: fix snmp6 collector
We scraped multiple times the same interface in one run.

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-01-11 15:16:43 +02:00
Daniel Golle
2b1b63d638 lvm2: update to version 2.03.11
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2021-01-11 00:46:27 +00:00
Rosen Penev
b6d1682615
stress-ng: add other dependencies
Size is not really an issue for stress-ng.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-10 14:54:32 -08:00
Rosen Penev
86aa645bf7
Merge pull request #14450 from neheb/oa
oath-toolkit: update to 2.6.5
2021-01-10 01:20:23 -08:00
Rosen Penev
86cacfdd4e
Merge pull request #14446 from neheb/stre
stress-ng: update to 0.12.01
2021-01-10 01:10:38 -08:00
Maxim Storchak
4a728c9792 collectd: bump PKG_RELEASE
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2021-01-10 10:22:54 +02:00
Maxim Storchak
0412c27fda collectd: enable swap plugin
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2021-01-10 10:22:54 +02:00
Maxim Storchak
8ab9fd7fff collectd: expose more global parameters to uci
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2021-01-10 10:22:54 +02:00
Maxim Storchak
a5d87390f2 collectd: remove extra newlines from the generated config
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2021-01-10 10:22:54 +02:00
Maxim Storchak
fdd53a4c60 collectd: fix the wrong var name
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2021-01-10 10:22:54 +02:00
Rosen Penev
3456cf54a9
oath-toolkit: update to 2.6.5
Add PKG_BUILD_PARALLEL for faster compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-09 17:59:20 -08:00
Rosen Penev
2d6f791a6f
stress-ng: update to 0.12.01
Simplified bsd patch to be compatible with glibc. It's easier to just
use libbsd with glibc. Size shouldn't be an issue.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-09 15:38:33 -08:00
Nick Hainke
3c55d11aef collectd: add snmp6 interface
Add collectd plugin allowing to collect IPv6 interface statistics.

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-01-09 10:12:20 +02:00
Tianling Shen
ba9eca0c31
yq: Update to 4.2.1
Signed-off-by: Tianling Shen <cnsztl@project-openwrt.eu.org>
2021-01-09 01:10:30 +08:00
Rosen Penev
62726a6ea0
Merge pull request #14433 from neheb/ct
ctop: update to 0.7.5
2021-01-08 03:34:19 -08:00
Rosen Penev
b99c73adde
dockerd: update to 20.10.2
Remove non MIPS depends as MIPS is supported now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-08 01:19:04 -08:00
Rosen Penev
5a4a676ec6
docker: update to 20.10.2
Remove non MIPS depends as MIPS is supported now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-08 01:18:33 -08:00
Rosen Penev
66c0a4800c
tini: fix compilation with glibc
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-08 00:51:48 -08:00
Rosen Penev
dfa357be73
containerd: add missing no MIPS16 variable
This succeeded on the buildbots as runc included its lack of mips in
dependencies.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-08 00:37:30 -08:00
Rosen Penev
902095af46
Merge pull request #14434 from neheb/ru
runc: remove non-MIPS depends
2021-01-08 00:01:02 -08:00
Rosen Penev
029bad71a2
Merge pull request #14436 from neheb/cont
containerd: remove non MIPS depends
2021-01-08 00:00:47 -08:00
Rosen Penev
20861bbc50
containerd: remove non MIPS depends
MIPS is supported now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-07 16:04:00 -08:00
Rosen Penev
81611d1fc3
ctop: update to 0.7.5
Remove depends as MIPS is supported now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-07 14:35:25 -08:00
Rosen Penev
3ebfd70c60
libnetwork: update to 2020-12-15
Remove some depends as MIPS is supported now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-07 14:33:43 -08:00
Rosen Penev
1bcce388b9
runc: remove non-MIPS depends
MIPS is supported now.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-07 14:30:51 -08:00
Rosen Penev
62f66125b5
Merge pull request #14361 from abajk/bump-coremark
coremark: bump to 2020-12-17
2021-01-05 17:23:21 -08:00
Rosen Penev
7fe58663e6
Merge pull request #14423 from zhaojh329/rtty
rtty: update to 7.1.5
2021-01-05 17:15:44 -08:00
Rosen Penev
f5e9ba0790
Merge pull request #14418 from datafl4sh/datafl4sh/update_gnuplot_to_5.4.1
gnuplot: Updated gnuplot to 5.4.1
2021-01-05 13:51:35 -08:00
Matteo Cicuttin
60c0c3ba5d gnuplot: Updated gnuplot to 5.4.1
Note: touches also `libdg`, changed dependency from libjpeg to libjpeg-turbo

Signed-off-by: Matteo Cicuttin <datafl4sh@toxicnet.eu>
2021-01-05 21:59:46 +01:00
Jianhui Zhao
3a84dac41a rtty: update to 7.1.5
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-01-05 20:52:26 +08:00
Kuan-Yi Li
4881e4251f usbutils: add usbreset
Add usbreset here to reflect the removal of usbreset package.

Signed-off-by: Kuan-Yi Li <kyli@abysm.org>
2021-01-04 08:27:44 -10:00
Rosen Penev
6b1f0439e8
Merge pull request #14362 from neheb/hwd
hwdata: introduce package and use
2021-01-03 15:17:59 -08:00
Hannu Nyman
6dac6bd886 haveged: update to 1.9.14
Update haveged to version 1.9.14.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2021-01-03 20:07:07 +02:00
Rosen Penev
915faf92db
Merge pull request #14411 from paulfertser/openocd-update-to-0.11.0-rc1
openocd: update to 0.11.0-rc1; add libgpiod dep; always depend on USB…
2021-01-02 12:38:07 -08:00
Rosen Penev
0047a4a191
Merge pull request #14407 from mstorchak/smartmontools
smartmontools: update to 7.2
2021-01-02 12:36:25 -08:00
Paul Fertser
84e3d16143 openocd: update to 0.11.0-rc1; add libgpiod dep; always depend on USB libs
The first release candidate with plenty of changes needs wider testing,
so package it.

Since Linux 4.8 new more efficient GPIO manipulation API is available
and sysfs class gpio is deprecated. Enable OpenOCD support for both for
now to avoid breaking existing user configs.

Due to low user demand and packaging difficulties require USB libraries
unconditionally from now on. Their sizes are not significant compared to
the OpenOCD package itself.

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2021-01-02 22:29:19 +03:00
Maxim Storchak
dc32fc0e47 smartmontools: update to 7.2
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2021-01-02 11:56:02 +02:00
Rosen Penev
5b379a921f
fontconfig: update to 2.13.93
Fixes compilation with glibc.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-01 17:21:37 -08:00
Tianling Shen
f52cd2d8a1 yq: Update to 4.2.0
Signed-off-by: Tianling Shen <cnsztl@project-openwrt.eu.org>
2020-12-31 23:28:47 -10:00
Rosen Penev
77844c85e5
Merge pull request #14392 from neheb/con
conmon: add host build dependency on go
2020-12-31 17:03:23 -08:00
Rosen Penev
27b54ace9a
conmon: add host build dependency on go
It seems to be needed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-31 16:43:18 -08:00
Rosen Penev
273923d5d2
whois: fix compilation with glibc
Just don't install mkpasswd at all. It's not used and causes problems.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-31 15:34:21 -08:00
Rosen Penev
791bade75a
Merge pull request #14378 from neheb/a
auc: link to libdl when needed
2020-12-30 18:35:15 -08:00
Rosen Penev
0d1f0c7848
Merge pull request #14383 from neheb/hf
hfsprogs: fix compilation under glibc
2020-12-30 18:34:17 -08:00
Rosen Penev
02d1083c57
Merge pull request #14368 from zhanhb/bash
bash: import upstream patches for 5.1
2020-12-30 18:34:03 -08:00
Rosen Penev
899b7aae50
hfsprogs: fix compilation under glibc
Seems sys/sysctl.h was removed.

Refresh patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-30 17:43:57 -08:00
Rosen Penev
34fb6fa5c2
Merge pull request #14296 from neheb/rtl4
rtl_433: update to 20.11
2020-12-30 17:37:42 -08:00
Rosen Penev
8b46b7c8c5
Merge pull request #14312 from neheb/tt
ttyd: update to 1.6.2
2020-12-30 17:37:14 -08:00
Rosen Penev
2fc16c17ca
Merge pull request #14381 from neheb/u
unrar: update to 6.0.3
2020-12-30 17:36:33 -08:00
Rosen Penev
7cb7a2e2a8
unrar: update to 6.0.3
Fix compilation with glibc by adding pthread linker flag.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-30 17:07:12 -08:00
Rosen Penev
4d4d9a2c32
xfsprogs: fix compilation under glibc
Missing link to librt.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-30 16:52:59 -08:00
Rosen Penev
67ac784f75
auc: link to libdl when needed
Fixes compilation under glibc.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-30 16:36:52 -08:00
Rosen Penev
3470992ad9
bonnie++: fix compilation with glibc
link to pthreads was missing

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-30 16:35:14 -08:00
Maxim Storchak
d39c77ba81 lvm2: provide selinux and non-selinux build variants
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
2020-12-31 00:28:58 +00:00
Huangbin Zhan
326315425a bash: import upstream patches for 5.1
Source:
https://ftp.gnu.org/gnu/bash/bash-5.1-patches/bash51-001
https://ftp.gnu.org/gnu/bash/bash-5.1-patches/bash51-002
https://ftp.gnu.org/gnu/bash/bash-5.1-patches/bash51-003
https://ftp.gnu.org/gnu/bash/bash-5.1-patches/bash51-004

Signed-off-by: Huangbin Zhan <zhanhb88@gmail.com>
2020-12-30 23:09:41 +08:00
Rosen Penev
8e8f6cb726
pciutils: use new pciids package
Refreshed patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-29 21:24:08 -08:00
Rosen Penev
6f4daa04da
usbutils: update to 013
Version 008 started requiring libudev. Now that we have libudev-zero,
switch to that.

Remove custom usb.ids handling as that was split to a separate package.

Add datadir override as otherwise it would expect usb.ids in the wrong
place.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-29 21:03:55 -08:00
Rosen Penev
6bcba815ef
usbutils: import from base
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-29 21:03:55 -08:00
Rosen Penev
63277d1184
hwdata: add package
Several packages use files from this project. Added package to
consolidate. Packages will be adjusted to depend on this.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-29 21:03:54 -08:00
Aleksander Jan Bajkowski
c4f7bcea29 coremark: bump to 2020-12-17
Signed-off-by: Aleksander Jan Bajkowski <A.Bajkowski@stud.elka.pw.edu.pl>
2020-12-29 21:40:29 +01:00
Vladimir Ulrich
48c60bf2a6 zoneinfo: Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2020-12-29 17:55:46 +02:00
Tianling Shen
2f1e481ac3
yq: Update to 4.1.0
Signed-off-by: Tianling Shen <cnsztl@project-openwrt.eu.org>
2020-12-25 17:44:18 +08:00
Rosen Penev
01809e8a3d
Merge pull request #14311 from neheb/sy
sysstat: update to 12.4.2
2020-12-24 19:18:50 -08:00
Rosen Penev
952dbc05b2
Merge pull request #14308 from neheb/spi2
spi-tools: update to 0.8.6
2020-12-24 19:18:41 -08:00
Rosen Penev
f0ed7fef35
Merge pull request #14310 from neheb/su
sumo: update to 1.8.0
2020-12-23 02:44:17 -08:00
Rosen Penev
d5047303d6
Merge pull request #14225 from nickberry17/update_watchcat_util
watchcat: add restart_iface and ping size features + refactor
2020-12-22 20:47:44 -08:00
Rosen Penev
b599c11aa8
zstd: update to 1.4.8
Remove upstreamed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-22 19:27:21 -08:00
Rosen Penev
cafde49d24
ttyd: update to 1.6.2
Remove upstream patch. Refreshed other one.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-22 19:25:13 -08:00
Rosen Penev
7c7f47a329
sysstat: update to 12.4.2
Refreshed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-22 19:24:36 -08:00
Rosen Penev
8a6869ed87
sumo: update to 1.8.0
Replace patch with simple CMAKE_OPTION.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-22 19:24:00 -08:00
Rosen Penev
8536473ccd
spi-tools: update to 0.8.6
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-22 19:22:38 -08:00
Rosen Penev
88e9d13ed7
rtl_433: update to 20.11
Replace CMAKE_INSTALL with an explicit InstallDev section.

Install conf files.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-22 01:30:44 -08:00
Steven Honson
1753096f2c
uhubctl: update to 2.3.0
Signed-off-by: Steven Honson <steven@honson.id.au>
2020-12-21 17:55:58 +11:00
Nicholas Smith
4974af70bd watchcat: add ability to restart interface + refactor
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2020-12-21 15:16:16 +10:00
Gerard Ryan
36944fc7ae libnetwork: Updated to source date 2020-12-12
PKG_SOURCE_VERSION:=5c6a95bfb20c61571a00f913c6b91959ede84e8d

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-21 01:59:57 +00:00
Gerard Ryan
52e966b686 dockerd: Updated to 20.10.1
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-21 01:59:57 +00:00
Gerard Ryan
6eaadf3286 docker: Updated to 20.10.1
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-21 01:59:57 +00:00
Daniel Golle
e66d6daa17 conmon: update to version 2.0.22
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-12-20 19:06:05 +00:00
Rosen Penev
744568fd31 lvm2: pass CC explicitly
It seems that in some situations, the host CC gets picked up. Just pass
the target one explicitly.

Refreshed patches.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-20 17:24:18 +00:00
Tianling Shen
4a0cacb955
yq: Update to 4.0.0
Signed-off-by: Tianling Shen <cnsztl@project-openwrt.eu.org>
2020-12-20 12:12:44 +08:00
Vincent JARDIN
776f4be36a acsccid: add package
First version based on 1.1.8

It is based on the ccid build framework
from Daniel Golle <daniel@makrotopia.org>

Suggested-by: Daniel Golle <daniel@makrotopia.org>
Signed-off-by: Vincent JARDIN <vjardin@free.fr>
2020-12-19 18:52:46 +00:00
Rosen Penev
a930e34204
Merge pull request #14267 from vjardin/pcsc-lite_path
pcscd: default /var/run path instead of /run
2020-12-18 17:15:12 -08:00
Vincent JARDIN
85d53837f7 pcscd: default /var/run path instead of /run
Fix start error:
  00001221 [2012634380] pcscdaemon.c:624:main() cannot create /run/pcscd: No such file or directory

Signed-off-by: Vincent JARDIN <vjardin@free.fr>
2020-12-19 01:03:36 +00:00
Rosen Penev
8e9d6f9459
Merge pull request #14264 from neheb/ntfs2
ntfs-3g: make symlinks relative
2020-12-18 13:22:13 -08:00
Yousong Zhou
31abcf26de qemu: remove ref to now non-existent TARGET_arm64
It was removed in base system commit 88468f7e ("armvirt: merge arm64 as
subtarget 64") in 2017

No change in packaged content

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2020-12-18 20:29:06 +08:00
Rosen Penev
b9c8f9def6
ntfs-3g: make symlinks relative
Fixes dead symlinks in InstallDev.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-17 22:01:23 -08:00
Rosen Penev
c12f6762ef
Merge pull request #14257 from zhanhb/alternatives-libexec
treewide: move binaries of alternatives to /usr/libexec
2020-12-17 21:41:04 -08:00
Rosen Penev
b2ba75c1c1
open2300: link library to relative path instead of absolute
Fixes an InstallDev dead link.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-17 16:01:48 -08:00
Yousong Zhou
33bbeceaa7 qemu: add patch for qga guest-shutdown command
Ref: https://github.com/openwrt/packages/issues/14244
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2020-12-17 17:08:40 +08:00
Daniel Golle
58449afd38 podman: update to version 2.2.1
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-12-15 18:23:18 +00:00
Daniel Golle
363222c289 cni-plugins: update to version 0.9.0
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-12-15 18:23:18 +00:00
Gerard Ryan
8caf2fea0f docker-compose: Updated docker-ce -> docker
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-15 12:52:33 +00:00
Gerard Ryan
3d8d2bd083 dockerd: Updated to 20.10.0
* SELinux and Seccomp are now enabled via the kernel options themselves
* Config.in now uses CGroupsV2 by default but optionally allows V1

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-15 12:52:33 +00:00
Gerard Ryan
404b917183 docker: Split from dockerd and update to v20.10.0
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-15 12:52:33 +00:00
Gerard Ryan
84f084ebfe libnetwork: Updated to 2020-11-25 for dockerd
Source Version: a543cbc4871f904b0efe205708eb45d72e65fd8b

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-15 12:52:33 +00:00
Gerard Ryan
f8a9c3d82a tini: Updated to v0.19.0 for dockerd
* Removed obsolete workaround
* Set Git source hash for executables to display

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-15 12:52:33 +00:00
Gerard Ryan
9cfaa96bcf containerd: Updated to v1.4.3 for dockerd
SELinux and Seccomp are now enabled via the kernel options themselves

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-15 12:52:33 +00:00
Gerard Ryan
249d7d8faa docker-ce: docker-ce -> dockerd
The source is being deprecated and split into the CLI and engine/daemon
repositories, So `docker-ce` will now be the `dockerd` and a separate
package will be made for the `docker` CLI.

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
2020-12-15 12:52:33 +00:00
Rosen Penev
680b76de07
Merge pull request #14158 from PolynomialDivision/snmpv6-collector
prometheus-node-exporter-lua: add snmp6 exporter
2020-12-14 13:34:35 -08:00
Rosen Penev
c47870b398
Merge pull request #14162 from Cynerd/rpcd-mod-lxc-postinst
rpcd-mod-lxc: add postinst to reload rpcd on update/installation
2020-12-14 13:32:59 -08:00
Nicholas Smith
a4ce06de1c watchcat: add support for specifying ping packet size
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2020-12-14 13:17:16 +10:00
Nicholas Smith
ddd2729313 watchcat: refactor function names
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2020-12-14 13:16:58 +10:00
Hannu Nyman
59d02aea1b
Merge pull request #14204 from PolynomialDivision/collectd-add-dhcp
collectd: add dhcpleases plugin
2020-12-12 18:21:51 +02:00
Nick Hainke
7f99516ce5 collectd: add dhcpleases plugin
Count the current dhcpleases. Currently, we use a bash script
that does the same job (Freifunk Berlin). We want to use native
collectd plugin for that.

Signed-off-by: Nick Hainke <vincent@systemli.org>
2020-12-12 14:59:49 +01:00
Rosen Penev
90b289f697
Merge pull request #14187 from BKPepe/disable-selinux-for-augeas
augeas: disable selinux
2020-12-11 17:25:32 -08:00
Josef Schlehofer
eb6972b0ea
Merge pull request #14178 from BKPepe/hwinfo-fix-version
Fix version in hwinfo and a few cosmetic stuff
2020-12-11 19:08:25 +01:00
Josef Schlehofer
a1eea08fa6
augeas: disable selinux
Fixes:
Package augeas is missing dependencies for the following libraries:
libselinux.so.1

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2020-12-11 12:18:11 +01:00
Florian Eckert
111b16ca1f lcd4linux: switch service to procd
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2020-12-10 16:10:17 +01:00
Rosen Penev
5af59188f6
kmod: fix wrong paths in pkgconfig files
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-12-10 01:50:28 -08:00