Commit Graph

25320 Commits

Author SHA1 Message Date
Kuan-Yi Li dddb23eb79 usbutils: bump to 014
Remove dependency on usbids as lsusb binary does not use usb.ids file
anymore, instead it uses udev hardware database.

Signed-off-by: Kuan-Yi Li <kyli@abysm.org>
2021-08-25 14:31:32 +08:00
Rosen Penev bd070b80e3
Merge pull request #16453 from paper42/grep-3.7
grep: update to 3.7
2021-08-24 19:12:47 -07:00
Rosen Penev 2eb27f73ee
Merge pull request #16374 from neheb/pocc
poco: update to 1.11.0
2021-08-24 19:12:00 -07:00
Rosen Penev 8f63f94a4b
Merge pull request #16452 from commodo/python-simplejson
python-simplejson: bump to version 3.17.5
2021-08-24 19:10:49 -07:00
Rosen Penev 3176f3793a
Merge pull request #16405 from neheb/airr
aircrack-ng: add fcommon
2021-08-24 19:08:41 -07:00
Rosen Penev 1882afb8f6
Merge pull request #16330 from neheb/ksmbbb
ksmbd stuff: update to 3.4.1
2021-08-24 19:08:14 -07:00
Stan Grishin ef8c964151
Merge pull request #16457 from rs/nextdns-1.36.0-master
nextdns: Update to version 1.36.0
2021-08-24 17:07:48 -07:00
Olivier Poitrey b23563ee34 nextdns: Update to version 1.36.0
Signed-off-by: Olivier Poitrey <rs@nextdns.io>
2021-08-24 23:40:39 +00:00
Karl Palsson 0be066d1c2 mosquitto: allow auth options with per listener settings
Some settings can be either global or per listener, and we need to
support both forms in UCI.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2021-08-24 14:19:41 +00:00
Michal Vasilek 8bf1ab3a29
grep: update to 3.7
Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
2021-08-24 15:40:28 +02:00
Karl Palsson 734f65d557 mosquitto: init: support more UCI options
Recent versions of mosquitto have added a lot more fine grained control
of various options.  Add UCI support for all of them, and fix a couple
of things that were configured as per listener, that are actually global
settings.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2021-08-24 12:08:31 +00:00
Alexandru Ardelean ff14602679 python-simplejson: bump to version 3.17.5
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2021-08-24 14:24:45 +03:00
Rosen Penev 7315c6498b
Merge pull request #16420 from neheb/fakepop
fakepop: fix compilation with PKG_ASLR
2021-08-24 02:25:49 -07:00
Rosen Penev d6e4de99cd
Merge pull request #16439 from ja-pa/tailscale-1.12.3
tailscale: update to version 1.12.3
2021-08-24 02:25:28 -07:00
Rosen Penev 769732f844
Merge pull request #16446 from micmac1/mdio-tools-ac_init
mdio-tools: fix buildbot build
2021-08-24 02:24:13 -07:00
Rosen Penev ee333d4ae6
Merge pull request #16448 from dbermond/proxychains-ng-4.15
proxychains-ng: update to version 4.15
2021-08-23 20:24:18 -07:00
Daniel Bermond c92a1a6173
proxychains-ng: update to version 4.15
Maintainer: me

Build system: Arch Linux x86_64
Build tested: ipq806x/R7800
Run tested  : ipq806x/R7800

Signed-off-by: Daniel Bermond <danielbermond@gmail.com>
2021-08-23 21:14:26 -03:00
Rosen Penev 48d404cd1d
Merge pull request #16408 from vgaetera/iface-bond
bonding: use shorter interface prefix
2021-08-23 14:50:46 -07:00
Vladislav Grigoryev 4f4722e36f bonding: use shorter interface prefix
Change the interface protocol prefix from "bonding-" to "bond-".
This allows longer custom interface names and useful for VLANs.

Signed-off-by: Vladislav Grigoryev <vg.aetera@gmail.com>
2021-08-24 00:17:15 +03:00
Rosen Penev 84b6e0a934
Merge pull request #16304 from micmac1/gpsd-3.23
gpsd: bump to 3.23
2021-08-23 12:31:29 -07:00
Rosen Penev 1806a66e1a
Merge pull request #16442 from nwidger/delve-1.7.1
delve: Update to 1.7.1
2021-08-23 12:19:31 -07:00
Rosen Penev 26b51234c8
Merge pull request #16440 from paper42/apr-cve-master
apr: patch CVE-2021-35940
2021-08-23 12:16:49 -07:00
Sebastian Kemper f0e12ae71b mdio-tools: fix buildbot build
On buildbots the build fails because git isn't finding any git repo and
then AC_INIT refuses to run:

fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
configure.ac:5: error: AC_INIT should be called with package and version arguments

Address this by substituting the git command with $(PKG_VERSION).

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2021-08-23 21:13:45 +02:00
Sebastian Kemper ad96acd158 gpsd: bump to 3.23
Contains fix for time jumping back 1024 weeks after 23-October-2021.

Changes:

- Between current version and 3.23 the ABI version changed from 27 to
  29. Add ABI_VERSION variable to package as the jumps occur often.
- 0001-no-distutils-import.patch: removed because current patch doesn't
  work with new release and host python3-distutils is a build
  requirement anyway.
- 0002-ncurses6_detection.patch: fixed the patch. Currently the first
  "elif" checks for "ncurses6-config". But this is only provided by
  ncurses/host package, so the CFLAGS then contain includes that point
  into $(STAGING_DIR_HOSTPKG). The ncurses target package only installs
  "ncursesw6-config" into the staging area. So this is the only tool of
  interest. Also, the hunk moved from SConstruct to SConscript.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
2021-08-23 21:08:37 +02:00
Paul Spooren 23ce5b0e6f auc: read `detail` not `message` from server
The server API was unified and therefore the servers response is now
`detail` rather than `message`, all found under the new endpoint
/api/v1/build.

Signed-off-by: Paul Spooren <mail@aparcar.org>
2021-08-23 08:47:08 -10:00
Ted Hess 351e26b238
Merge pull request #16361 from stintel/v4l
v4l-utils: add libudev-zero dependency
2021-08-23 12:42:26 -04:00
Stijn Tintel 9dc0fd7c14 v4l-utils: add libudev-zero dependency
When libudev-zero is enabled, v4l-utils links against it, and the
package build fails due to a missing dependency:

Package v4l-utils is missing dependencies for the following libraries:
libudev.so.1

As disabling udev doesn't seem to be supported in v4l-utils, simply add
the dependency to fix the build.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2021-08-23 17:18:08 +03:00
Michal Vasilek 0777e40b74
apr: patch CVE-2021-35940
Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
2021-08-23 15:38:23 +02:00
Niels Widger 3583fd1c2e delve: Update to 1.7.1
See
https://github.com/go-delve/delve/blob/master/CHANGELOG.md#171-2021-08-18
for changes.

Signed-off-by: Niels Widger <niels@qacafe.com>
2021-08-23 08:38:26 -04:00
Rosen Penev f4c765409a
Merge pull request #16438 from kuoruan/aria2
aria2: bump to v1.36.0
2021-08-23 02:40:40 -07:00
Simon Polack e36e8a6a3b airos-dfs-reset: add airos-dfs-reset
Ubiquitis airmax based gear does not fallback to original port after DFS
event is over. This tool triggers the fallback automatically by soft-restarting
unconditionally, whenever the configured freq differs from the running.

Signed-off-by: Simon Polack <spolack+git@mailbox.org>
2021-08-23 11:40:33 +02:00
Rosen Penev 3a29ecfcc9
Merge pull request #16401 from Fanfwe/fix_jq_performance
jq: Backport a bunch of commits in order to fix jq-1.6 terrible performance on startup
2021-08-23 02:21:26 -07:00
François Goudal dca61c0261 jq: Backport a bunch of commits in order to fix jq-1.6 terrible performance on startup
Signed-off-by: François Goudal <francois.goudal@airmont.com>
2021-08-23 11:15:44 +02:00
Jan Pavlinec 23d90cabd2
tailscale: update to version 1.12.3
Signed-off-by: Jan Pavlinec <jan.pavlinec1@gmail.com>
2021-08-23 08:45:04 +02:00
Hsing-Wang Liao 455536670b aria2: bump to v1.36.0
Signed-off-by: Hsing-Wang Liao <kuoruan@gmail.com>
2021-08-23 02:21:08 +00:00
Rosen Penev 8c55f72146
Merge pull request #16432 from nickberry17/update_MM_and_libs
bump ModemManager and libs
2021-08-22 14:33:52 -07:00
Rosen Penev 086054fded
Merge pull request #16435 from jefferyto/golang-1.17
golang: Update to 1.17
2021-08-22 14:32:34 -07:00
Rosen Penev da6c6acebc
Merge pull request #16427 from neheb/vs
vsftpd: update to 3.0.5
2021-08-22 14:04:30 -07:00
Jeffery To d0aab6b8bc
golang: Update to 1.17
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2021-08-23 00:37:25 +08:00
Etienne Champetier 7a1c237937 phantap: update to latest commit
26bd876 Switch from ifname to device
d8d3d5f Fix blog post link

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2021-08-22 07:47:09 -04:00
Nicholas Smith c7ec9ec410 modemmanager: switch to autorelease
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 16:12:36 +10:00
Nicholas Smith 80b47a11b1 libmbim: switch to autorelease
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 16:12:20 +10:00
Nicholas Smith daeb94469b libqmi: switch to autorelease
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 16:12:08 +10:00
Nicholas Smith 858d61b148 modemmanager: bump to 1.16.10
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 15:50:33 +10:00
Nicholas Smith 46e6cb7d15 libmbim: bump to 1.26.0
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 15:50:14 +10:00
Nicholas Smith 4e67af0cc1 libqmi: bump to 1.28.8
Signed-off-by: Nicholas Smith <nicholas@nbembedded.com>
2021-08-22 15:49:41 +10:00
Dirk Brenken 114b8da841
Merge pull request #16428 from dibdot/travelmate
travelmate: update to 2.0.6
2021-08-22 06:38:25 +02:00
Dirk Brenken 1c0fcbd28b
travelmate: update to 2.0.6
* replaced pipe input for a while/read-loop with a here document/variable as input
  (fix various subshell related bugs and oddities)
* further improve abort and re-connection handling
* prevent alleged detected connection failures (false positives) with an additional gw check,
  to stabilize VPN connections in particular

Signed-off-by: Dirk Brenken <dev@brenken.org>
2021-08-22 06:31:51 +02:00
Rosen Penev 1b86329536
Merge pull request #16421 from neheb/nfdd
nfdump: fix compilation with PKG_ASLR
2021-08-21 16:10:58 -07:00
Rosen Penev 71ee801e14
Merge pull request #16423 from neheb/kll
klish: update to 2.2.3
2021-08-21 16:10:47 -07:00