Commit graph

23153 commits

Author SHA1 Message Date
Rosen Penev
ed1fb54f1a
Merge pull request #14566 from rs/nextdns-1.10.1-master
nextdns: Update to version 1.10.1
2021-01-25 23:07:13 -08:00
Rosen Penev
77ceaaf770
Merge pull request #14561 from ja-pa/libmaxminddb-1.5.0
libmaxminddb: update to version 1.5.0
2021-01-25 23:02:30 -08:00
Rosen Penev
b67524aa17 pthsem: try to fix ARC compilation
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-25 22:59:13 -08: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
Olivier Poitrey
3575fe6408 nextdns: Update to version 1.10.1
Signed-off-by: Olivier Poitrey <rs@nextdns.io>
2021-01-25 17:55:29 +00:00
Jan Pavlinec
8ab91fe284
libmaxminddb: update to version 1.5.0
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-01-25 13:17:01 +01:00
Rosen Penev
37730ae7f4
Merge pull request #14557 from jefferyto/golang-1.15.7
golang: Update to 1.15.7
2021-01-25 01:43:13 -08:00
Rosen Penev
45918150c3
Merge pull request #14555 from fatbob313/umurmur0.2.19
uMurmur: Update to 0.2.19. Patches required for 0.2.17 merged upstream.
2021-01-25 01:42:36 -08:00
Rosen Penev
a64044339b
Merge pull request #14553 from nickberry17/update_libqmi
libqmi: bump version
2021-01-25 01:40:56 -08:00
Rosen Penev
8710b8b839
Merge pull request #14552 from nickberry17/update_libmbim
libmbim: bump version
2021-01-25 01:40:42 -08:00
Jo-Philipp Wich
82fdb0ed05
Merge pull request #14539 from PolynomialDivision/owipcalc-default-route
owipcalc: fix contains not respect default route
2021-01-25 10:36:15 +01:00
Jeffery To
c0fb05d670
golang: Update to 1.15.7
This includes fixes for:
* CVE-2021-3114: crypto/elliptic: incorrect operations on the P-224
  curve
* CVE-2021-3115: cmd/go: packages using cgo can cause arbitrary code
  execution on Windows

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2021-01-25 17:22:25 +08:00
Martin Johansson
268a905630 uMurmur: Update to 0.2.19. Patches required for 0.2.17 merged upstream.
Signed-off-by: Martin Johansson <martin@fatbob.nu>
2021-01-25 09:12:47 +01:00
Nicholas Smith
ff753dddff libmbim: bump version
Signed-off-by: Nicholas Smith <nicholas.smith@telcoantennas.com.au>
2021-01-25 13:05:23 +10:00
Nicholas Smith
d3e7b12143 libqmi: bump version
Signed-off-by: Nicholas Smith <nicholas.smith@telcoantennas.com.au>
2021-01-25 13:01:06 +10:00
Rosen Penev
0f566e44b6
Merge pull request #14546 from 1715173329/new-yq
yq: Update to v4.4.1
2021-01-24 17:17:40 -08:00
Hannu Nyman
1059e3cdb8
Merge pull request #14334 from bogdik/master
Add Eoip packege
2021-01-24 19:39:24 +02:00
Bogdan Shatik
64e3fdbdce eoip: Add package
add eoip package,this can create ethernet
tunnels compatible with Mikrotik EoIP tunnel.
At current moment it is easiest way
to create stateless tunnel with Mikrotik.

Signed-off-by: Bogdan Shatik <bogdikxxx@mail.ru>
2021-01-24 16:39:15 +03:00
Josef Schlehofer
f9ecc43442
python-flask-seasurf: update to version 0.3.0
- Update copyright

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2021-01-24 10:08:04 +01:00
Josef Schlehofer
5d839fc06b
youtube-dl: update to version 2021.1.16
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2021-01-24 09:26:28 +01:00
Josef Schlehofer
14b751cdc4
Merge pull request #14529 from ja-pa/ooniprobe-3.4.0
ooniprobe: update to version 3.4.0
2021-01-24 09:16:38 +01:00
Nick Hainke
e974acaac7 owipcalc: fix contains not respect default route
In IPv4 the default route can be written as
 0.0.0.0/0

In IPv6 the default route can be written as
 ::/0

If u try
  owipcalc 0.0.0.0/0 contains 1.1.1.1
or
  owipcalc ::/0 contains ::1
owipcalc will respond with 0 meaning that the "default prefixes" do not
contain the routes.
That is why we check now for 0 prefix.

Furthermore, if the prefix is 0, i will be 16. We will access a negative
array entry in the line:
 uint8_t net1 = x->s6_addr[15-i] & m;

Divide by % 16 to prevent i becoming 16:
 uint8_t i = ((128 - a->prefix) / 8) % 16;

Signed-off-by: Nick Hainke <vincent@systemli.org>
2021-01-23 17:48:18 +01: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
5d2ae85cd6 generate-ipv6-address: 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:12:47 +01:00
Nick Hainke
33833011c6 libradiotap: 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:10:51 +01:00
Nick Hainke
e98653870e libuwifi: 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:08:08 +01: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
Rosen Penev
64c917b702
Merge pull request #14538 from zpc0/hwdata-0343
hwdata: update to 0.343
2021-01-23 03:45:08 -08:00
Rosen Penev
4b4be9d312
Merge pull request #14531 from adschm/calcmove
owipcalc/maccalc: import from base
2021-01-23 03:44:20 -08: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
Rosen Penev
453f7d8cd7
Merge pull request #14530 from TDT-AG/pr/20210122-iperf
iperf: import iperf3 and iperf from base
2021-01-22 22:28:45 -08:00
Rosen Penev
8079f4845f
Merge pull request #14500 from stangri/master-https-dns-proxy
https-dns-proxy: bugfix: high CPU utilization
2021-01-22 17:42:11 -08:00
Rosen Penev
747efcbcd1
Merge pull request #14506 from neheb/spm
perl-mail-spamassassin: change perl dependency to not use select
2021-01-22 13:33:18 -08:00
Rosen Penev
78db8be3d5
Merge pull request #14528 from ja-pa/tor-hs-update
tor-hs: fix rpcd
2021-01-22 13:31:16 -08:00
Rosen Penev
862b158bdf
Merge pull request #14527 from ja-pa/czmq-4.2.1
czmq: update to version 4.2.1
2021-01-22 13:30:58 -08:00
Adrian Schmutzler
7a07dfc6db maccalc: import from base
This is a helpful utility, but it does not have any dependencies
in base repository. Move it to packages feed.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2021-01-22 17:13:42 +01:00
Adrian Schmutzler
ee75bd5a8f owipcalc: import from base
This is a helpful utility, but it does not have any dependencies
in base repository. Move it to packages feed.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2021-01-22 17:12:53 +01:00
Florian Eckert
2f5a543973 iperf3: import from base
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2021-01-22 16:27:06 +01:00
Florian Eckert
2131f33d08 iperf: import from base
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2021-01-22 16:26:55 +01:00
Jan Pavlinec
3f87d3dcc4
ooniprobe: update to version 3.4.0
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-01-22 16:19:44 +01:00
Jan Pavlinec
fe5c201bdd
tor-hs: fix rpcd
Changes:
- add rpcd dependecy
- handle rpcd in post inst/rm sections

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-01-22 14:10:58 +01:00
Jan Pavlinec
39b4c64545
czmq: update to version 4.2.1
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2021-01-22 13:26:11 +01:00
Florian Eckert
f21885ec85
Merge pull request #14510 from zhanhb/ddns-scripts
ddns-scripts: fix wget-ssl path
2021-01-22 09:09:48 +01:00
Philip Prindeville
f31c937e94
Merge pull request #14489 from pprindeville/isc-dhcp-add-other-rfc1918-nets
isc-dhcp: support dynamic dns for 10/8 and 172.16/12
2021-01-21 19:49:00 -07:00
Rosen Penev
2cf2681a55
Merge pull request #14526 from zhaojh329/rtty
rtty: update to 7.2.1
2021-01-21 18:17:50 -08: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
Rosen Penev
d2aba09d26 cjson: fix wrong pkgconfig paths
The .pc file points to OS paths instead of target ones.

Remove CMAKE_INSTALL as InstallDev is explicit.

Move MAINTAINER to PKG_MAINTAINER for consistency.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-01-21 13:49:27 +00:00
Karl Palsson
4149abc29b mosquitto: bump to 2.0.5
Includes 2.0.5 https://mosquitto.org/blog/2021/01/version-2-0-5-released/
Includes 2.0.4 https://mosquitto.org/blog/2020/12/version-2-0-4-released/
Includes 2.0.3 https://mosquitto.org/blog/2020/12/version-2-0-3-released/

Multiple fixes to broker and client and libraries, related the 2.x
changes.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2021-01-21 13:49:27 +00:00
Josef Schlehofer
5f3d555cec
Merge pull request #14524 from Payne-X6/master
knot: update to version 3.0.4
2021-01-21 11:52:05 +01:00