feed/packages.git
23 months agoMerge pull request #18511 from jefferyto/circleci-add-keys
Etienne Champetier [Sun, 29 May 2022 01:16:46 +0000 (21:16 -0400)]
Merge pull request #18511 from jefferyto/circleci-add-keys

CircleCI: Add 22.03 public keys, 18.06 v2 gpg key, 18.06 usign key

23 months agobanip: mark as broken
Dirk Brenken [Fri, 27 May 2022 19:23:56 +0000 (21:23 +0200)]
banip: mark as broken

banIP 0.7.x is not compatible with new nft firewall (default in master and 22.03).
Mark the package as BROKEN for now.

Signed-off-by: Dirk Brenken <dev@brenken.org>
23 months agolua-openssl: update to version 0.8.2-1
Maciej Krüger [Wed, 25 May 2022 14:56:59 +0000 (16:56 +0200)]
lua-openssl: update to version 0.8.2-1

Signed-off-by: Maciej Krüger <mkg20001@gmail.com>
23 months agogcc: depend on libzstd
W. Michael Petullo [Thu, 26 May 2022 00:19:03 +0000 (19:19 -0500)]
gcc: depend on libzstd

Signed-off-by: W. Michael Petullo <mike@flyn.org>
23 months agostubby: restart on trigger interfaces
Aleksandr V. Piskunov [Mon, 23 May 2022 17:06:37 +0000 (20:06 +0300)]
stubby: restart on trigger interfaces

Force restart stubby if any of the trigger interfaces goes up or down.
Avoids DoT DNS lookup timeouts when default route changes, in case of multiple
upstream interfaces.

Signed-off-by: Aleksandr V. Piskunov <aleksandr.v.piskunov@gmail.com>
23 months agohfsprogs: update to 540.1.linux3
Rosen Penev [Fri, 29 Apr 2022 20:36:04 +0000 (13:36 -0700)]
hfsprogs: update to 540.1.linux3

Updates hfsprogs from 2011 to 2013 version.

Updated patches to latest Debian ones. Kept custom OpenWrt ones.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
23 months agovpnc: Update to 0.5.3+git20220517
Andreas Erhard [Wed, 18 May 2022 08:04:39 +0000 (10:04 +0200)]
vpnc: Update to 0.5.3+git20220517

The new version of vpnc supports additional DH groups for improved key exchange security.

Signed-off-by: Andreas Erhard <andreas.erhard@i-med.ac.at>
23 months agohaproxy: Update HAProxy to v2.4.17
Christian Lachner [Mon, 16 May 2022 06:45:59 +0000 (08:45 +0200)]
haproxy: Update HAProxy to v2.4.17

- Update haproxy download URL and hash

Signed-off-by: Christian Lachner <gladiac@gmail.com>
23 months agopython-jsonschema: Update to 4.5.1
Javier Marcet [Tue, 24 May 2022 16:39:32 +0000 (18:39 +0200)]
python-jsonschema: Update to 4.5.1

What's Changed:

 - Extend dynamicRef keyword by @nezhar
 - Add FORMAT_CHECKER attribute for Validator by @TiborVoelcker
 - Remove stray double-quote by @lurch
 - Ensure proper sorting of list in error message by @ssbarnea

Signed-off-by: Javier Marcet <javier@marcet.info>
23 months agopython3-paramiko: update to version 2.11.0
Javier Marcet [Tue, 24 May 2022 16:40:38 +0000 (18:40 +0200)]
python3-paramiko: update to version 2.11.0

2.11.0:

 - [Feature] Add SSH config token expansion (eg %h, %p) when parsing
 ProxyJump directives. Patch courtesy of Bruno Inec.

 - [Support] (via #2011) Apply unittest skipIf to tests currently
 using SHA1 in their critical path, to avoid failures on systems
 starting to disable SHA1 outright in their crypto backends (eg RHEL
 9). Report & patch via Paul Howarth.

 - [Support] Update camelCase method calls against the threading
 module to be snake_case; this and related tweaks should fix some
 deprecation warnings under Python 3.10. Thanks to Karthikeyan
 Singaravelan for the report, @Narendra-Neerukonda for the patch,
 and to Thomas Grainger and Jun Omae for patch workshopping.

 - [Support] Recent versions of Cryptography have deprecated Blowfish
 algorithm support; in lieu of an easy method for users to remove it
 from the list of algorithms Paramiko tries to import and use, we’ve
 decided to remove it from our “preferred algorithms” list. This will
 both discourage use of a weak algorithm, and avoid warnings. Credit
 for report/patch goes to Mike Roest.

2.10.5:

 - [Bug] Windows-native SSH agent support as merged in 2.10 could
 encounter Errno 22 OSError exceptions in some scenarios (eg server
 not cleanly closing a relevant named pipe). This has been worked
 around and should be less problematic. Reported by Danilo Campana
 Fuchs and patched by Jun Omae.

 - [Bug] OpenSSH 7.7 and older has a bug preventing it from
 understanding how to perform SHA2 signature verification for RSA
 certificates (specifically certs - not keys), so when we added SHA2
 support it broke all clients using RSA certificates with these
 servers. This has been fixed in a manner similar to what OpenSSH’s
 own client does: a version check is performed and the algorithm used
 is downgraded if needed. Reported by Adarsh Chauhan, with fix
 suggested by Jun Omae.

 - [Bug] Align signature verification algorithm with OpenSSH re:
 zero-padding signatures which don’t match their nominal size/length.
 This shouldn’t affect most users, but will help Paramiko-implemented
 SSH servers handle poorly behaved clients such as PuTTY. Thanks to
 Jun Omae for catch & patch.

Signed-off-by: Javier Marcet <javier@marcet.info>
23 months agodocker-compose: Update to version 2.5.1
Javier Marcet [Tue, 24 May 2022 16:45:21 +0000 (18:45 +0200)]
docker-compose: Update to version 2.5.1

What's Changed:

 - Fix relative paths on envfile label by @ulyssessouza
 - down: Reject all arguments by @Jille
 - Clarify what default work dir is when multiple compose files by
 @quite
 - compose down exit=0 if nothing to remove by @ndeloof
 - cp command: copy to all containers of a service as default
 behaviour by @glours
 - Fix extra space printed with --no-log-prefix option by @jan4843
 - bump compose-go to 1.2.5 by @ndeloof

New Contributors:

 - @Jille made their first contribution
 - @quite made their first contribution
 - @jan4843 made their first contribution

Signed-off-by: Javier Marcet <javier@marcet.info>
23 months agodnslookup: Update to 1.7.0
Tianling Shen [Wed, 25 May 2022 08:27:50 +0000 (16:27 +0800)]
dnslookup: Update to 1.7.0

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
23 months agodnsproxy: Update to 0.43.0
Tianling Shen [Wed, 25 May 2022 08:26:52 +0000 (16:26 +0800)]
dnsproxy: Update to 0.43.0

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
23 months agoMerge pull request #18605 from rsalvaterra/oc
Nikos Mavrogiannopoulos [Tue, 24 May 2022 12:34:58 +0000 (14:34 +0200)]
Merge pull request #18605 from rsalvaterra/oc

openconnect: three misc fixes

23 months agoopenconnect: make sure OpenSSL is built with DTLS support 18605/head
Rui Salvaterra [Tue, 24 May 2022 11:03:06 +0000 (12:03 +0100)]
openconnect: make sure OpenSSL is built with DTLS support

Otherwise, OpenConnect will fail to connect with DTLS.

Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
23 months agoopenconnect: don't bother loading the tun module
Rui Salvaterra [Thu, 19 May 2022 13:01:00 +0000 (14:01 +0100)]
openconnect: don't bother loading the tun module

If it exists (if it isn't built-in), it will be loaded automatically at boot.

Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
23 months agoopenconnect: drop the dependency on resolveip
Rui Salvaterra [Tue, 17 May 2022 15:29:14 +0000 (16:29 +0100)]
openconnect: drop the dependency on resolveip

We have nslookup and awk, let's use them.

Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
23 months agodnsproxy: Update to 0.42.4
Tianling Shen [Mon, 23 May 2022 05:47:13 +0000 (13:47 +0800)]
dnsproxy: Update to 0.42.4

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
23 months agosamba4: fix build on macos
Sergey V. Lobanov [Tue, 15 Feb 2022 23:48:08 +0000 (02:48 +0300)]
samba4: fix build on macos

This commit fixes two issues on macos:
1. Added a patch to fix 'echo -n' issue with MacOS shell
(backported from upstream)
2. Redefined sys.platform='linux' for target build if build host is
MacOS (otherwise, build script tries to use MacOS logic for
OpenWrt(Linux) target build)

Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
23 months agoglib2: update to 2.70.5
Rosen Penev [Mon, 16 May 2022 13:52:37 +0000 (06:52 -0700)]
glib2: update to 2.70.5

Enabled glib_checks to fix podman.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
23 months agortty: update to 8.0.1
Jianhui Zhao [Sun, 22 May 2022 14:01:18 +0000 (22:01 +0800)]
rtty: update to 8.0.1

Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
23 months agoacme: switch from iptables to nft
Toke Høiland-Jørgensen [Wed, 30 Mar 2022 10:54:51 +0000 (12:54 +0200)]
acme: switch from iptables to nft

Use nft instead of iptables to open port 80 in the firewall when getting a
cert. Since nft doesn't allow deleting a rule by its contents, capture and
save the handle when creating the rule, and use that to delete.

Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
23 months agoaudit: remove host build
Eneas U de Queiroz [Wed, 11 May 2022 22:37:12 +0000 (19:37 -0300)]
audit: remove host build

The audit package in the packages feed share the same sources as the
libaudit package in the base repo.  libaudit performs a host build, used
only by libsemanage in base.

There is no package depending on 'audit/host', so we can remove it to
avoid possible confusion.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
23 months agoaudit: avoid interferece with base libaudit build
Eneas U de Queiroz [Wed, 11 May 2022 22:08:13 +0000 (19:08 -0300)]
audit: avoid interferece with base libaudit build

Both audit in the packages feed and libaudito from the base repo use the
same sources.

Have 'audit' use a different build directory than 'libaudit' package to
avoid interference between them.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
23 months agoaudit: Fix compilation with kernel 5.15
Eneas U de Queiroz [Thu, 5 May 2022 12:58:02 +0000 (09:58 -0300)]
audit: Fix compilation with kernel 5.15

Linux 5.15 does not have the linux/ipx.h header.

The patch is a partial cherry-pick (skipped ChangeLog) of upstream
commit 6b09724c6 ("Make IPX packet interpretation dependent on the ipx
header file existing").

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
23 months agoopenconnect: fix OpenSSL build without deprecated API
Rui Salvaterra [Mon, 16 May 2022 14:10:27 +0000 (15:10 +0100)]
openconnect: fix OpenSSL build without deprecated API

Backport a patch in order to allow building OpenConnect against OpenSSL 1.1.x
without the need for deprecated API (further fixes will be required for OpenSSL
3.x, though).

Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
23 months agolibcoap: make sure `libcoap-3-notls.so` is installed
Leo Soares [Mon, 16 May 2022 23:02:26 +0000 (00:02 +0100)]
libcoap: make sure `libcoap-3-notls.so` is installed

This commit fixes an issue where the `libcoap-3-notls.so` is not installed,
in some cases leaving the target's root with no library and just a broken link
from `libcoap-3.so` to `libcoap-3-notls.so`.

Signed-off-by: Leo Soares <leo@hyper.ag>
23 months agowifi-presence: Add config for process user/group
Adam Williams [Thu, 19 May 2022 03:08:01 +0000 (21:08 -0600)]
wifi-presence: Add config for process user/group

On systems using seccomp, the hostapd socket files will be owned by the
'network' user/group ([source][0]). In this case, if wifi-presence is
run as root/root, then it does not have permissions to open the
hostapd socket files. This was discussed in awilliams/wifi-presence#3.

This change allows the process user/group to be specified in
/etc/config/wifi-presence. If no explicit user/group is set, then the
init script will use the owner of the socket files in /var/run/hostapd/
to determine the appropriate process user/group.

[0]: https://github.com/openwrt/openwrt/blob/ec6293febc244d187e71a6e54f44920be679cde4/package/network/services/hostapd/files/wpad.init#L35-L36

Signed-off-by: Adam Williams <pwnfactory@gmail.com>
23 months agoMerge pull request #18586 from flyn-org/openldap
Florian Eckert [Fri, 20 May 2022 14:21:51 +0000 (16:21 +0200)]
Merge pull request #18586 from flyn-org/openldap

openldap: drop use of HTTP in favor of HTTPS

23 months agoopenldap: drop use of HTTP in favor of HTTPS 18586/head
W. Michael Petullo [Fri, 20 May 2022 13:14:33 +0000 (08:14 -0500)]
openldap: drop use of HTTP in favor of HTTPS

Signed-off-by: W. Michael Petullo <mike@flyn.org>
23 months agoMerge pull request #18494 from nemesisdesign/master
Florian Eckert [Fri, 20 May 2022 07:59:34 +0000 (09:59 +0200)]
Merge pull request #18494 from nemesisdesign/master

openwisp-config: update to 1.0.0

23 months agobluez: Update to 5.64, update/refresh patches
Jeffery To [Tue, 17 May 2022 09:38:45 +0000 (17:38 +0800)]
bluez: Update to 5.64, update/refresh patches

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
23 months agofrr: drop elfutils/host dependency
Stijn Tintel [Wed, 18 May 2022 12:35:24 +0000 (15:35 +0300)]
frr: drop elfutils/host dependency

The elfutils package moved to tools and elfutils/host no longer exists.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
23 months agostunnel: update to version 5.64
Florian Eckert [Mon, 21 Mar 2022 09:22:13 +0000 (10:22 +0100)]
stunnel: update to version 5.64

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
23 months agoMerge pull request #18361 from stangri/master-https-dns-proxy
Stan Grishin [Thu, 19 May 2022 09:00:31 +0000 (12:00 +0300)]
Merge pull request #18361 from stangri/master-https-dns-proxy

https-dns-proxy: 2021-11-22-3: add support for Canary Domains

23 months agogcc: update to allow compiling different versions
W. Michael Petullo [Wed, 18 May 2022 22:06:25 +0000 (17:06 -0500)]
gcc: update to allow compiling different versions

This is based on the toolchain GCC, and aims to share as much of its
Makefile and patches with that definition. The package requires two
additional patches:

(1) 003-dont-choke-when-building-32bit-on-64bit.patch, which fixes the
`error: size of array 'test_real_width' is negative` error that occurs
when building a 32-bit GCC on a 64-bit host. (Search the Internet for
examples of this error appearing.)

(2) 980-add-nostdinc++.patch, which backports a fix from 11.3.0 (11.2.0
only).

Signed-off-by: W. Michael Petullo <mike@flyn.org>
23 months agogcc: change maintainer
W. Michael Petullo [Wed, 18 May 2022 21:55:39 +0000 (16:55 -0500)]
gcc: change maintainer

Signed-off-by: W. Michael Petullo <mike@flyn.org>
23 months agozsh: update to 5.9
John Audia [Tue, 17 May 2022 18:43:06 +0000 (14:43 -0400)]
zsh: update to 5.9

Bump to latest release

Build system: x86_64
Build-tested: bcm2711/RPi4B
Run-tested: bcm2711/RPi4B

Signed-off-by: John Audia <therealgraysky@proton.me>
23 months agoopenwisp-config: update to 1.0.0 18494/head
Federico Capoano [Tue, 10 May 2022 19:08:02 +0000 (15:08 -0400)]
openwisp-config: update to 1.0.0

Signed-off-by: Federico Capoano <f.capoano@openwisp.io>
23 months agoRevert "lxc: export systemd cgroups after install"
Stijn Tintel [Wed, 18 May 2022 10:46:01 +0000 (13:46 +0300)]
Revert "lxc: export systemd cgroups after install"

The postinst script is sourced during image build, which causes the
follow failure:
/home/stijn/Development/OpenWrt/openwrt/build_dir/target-x86_64_musl/root-x86/etc/init.d/lxc-auto: line 3: /lib/functions.sh: No such file or directory
postinst script ./usr/lib/opkg/info/lxc-auto.postinst has failed with exit code 1

Sourcing /lib/functions.sh is not needed, as /etc/rc.common does so
already. Unfortunately removing that line from the init script is not
enough to fix the problem. The postinst script should also check
IPKG_INSTROOT. As these two changes are unrelated, they should go in
separate commits, and the solution to the image build problem is to
revert the commit that introduced the breakage.

This reverts commit 2cde10b95053bf958a4001fb0a82c4563bf345e2.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
23 months agoRevert "ci: Use openwrt/gh-action-sdk@v5"
Rosen Penev [Wed, 18 May 2022 13:51:23 +0000 (06:51 -0700)]
Revert "ci: Use openwrt/gh-action-sdk@v5"

This reverts commit 7b7265293f953c71a65099ecbdbfbaf5f14bf4f8.

23 months agoci: Use openwrt/gh-action-sdk@v5
Jeffery To [Wed, 18 May 2022 09:28:05 +0000 (17:28 +0800)]
ci: Use openwrt/gh-action-sdk@v5

This version builds packages as a normal user instead of as root.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
23 months agotelegraf: Update to version 1.22.4
Jonathan Pagel [Tue, 17 May 2022 19:26:54 +0000 (21:26 +0200)]
telegraf: Update to version 1.22.4

Signed-off-by: Jonathan Pagel <jonny_tischbein@systemli.org>
23 months agousteer: update to latest HEAD
David Bauer [Tue, 17 May 2022 14:24:43 +0000 (16:24 +0200)]
usteer: update to latest HEAD

7afab96 usteer: Fix better candidate not being set in policy

Signed-off-by: David Bauer <mail@david-bauer.net>
23 months agobcm27xx-eeprom: update to v2022.04.26-138a1
Álvaro Fernández Rojas [Tue, 17 May 2022 14:22:56 +0000 (16:22 +0200)]
bcm27xx-eeprom: update to v2022.04.26-138a1

Git compare: https://github.com/raspberrypi/rpi-eeprom/compare/47976e4409c6999a8e211976c75c60a97c90275c...v2022.04.26-138a1

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
23 months agoMerge pull request #18472 from sotux/master
Florian Eckert [Tue, 17 May 2022 06:06:46 +0000 (08:06 +0200)]
Merge pull request #18472 from sotux/master

kcptun: add tcp option

23 months agosoftflowd: add traffic capture filter
Jesus Fernandez Manzano [Tue, 26 Apr 2022 10:10:23 +0000 (12:10 +0200)]
softflowd: add traffic capture filter

softflowd can filter the traffic with an optional bpf program,
specified on the command-line as a BPF expression

Signed-off-by: Jesus Fernandez Manzano <jesus.manzano@galgus.net>
23 months agodocker: Update to v20.10.16
Gerard Ryan [Mon, 16 May 2022 12:01:20 +0000 (22:01 +1000)]
docker: Update to v20.10.16

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
23 months agodockerd: Update to v20.10.16
Gerard Ryan [Mon, 16 May 2022 11:58:44 +0000 (21:58 +1000)]
dockerd: Update to v20.10.16

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
23 months agolibnetwork: Updated to 339b97 for docker v20.10.16
Gerard Ryan [Mon, 16 May 2022 11:54:44 +0000 (21:54 +1000)]
libnetwork: Updated to 339b97 for docker v20.10.16

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
23 months agocontainerd: Update to v1.6.4 for docker v20.10.16
Gerard Ryan [Mon, 16 May 2022 11:51:30 +0000 (21:51 +1000)]
containerd: Update to v1.6.4 for docker v20.10.16
* Overrode `PREFIX` to have the old behaviour

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
23 months agorunc: Update to v1.1.1 for docker v20.10.16
Gerard Ryan [Mon, 16 May 2022 11:48:09 +0000 (21:48 +1000)]
runc: Update to v1.1.1 for docker v20.10.16

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
23 months agonsutils: Update to latest version, switch to cmake
Jeffery To [Thu, 12 May 2022 20:50:25 +0000 (04:50 +0800)]
nsutils: Update to latest version, switch to cmake

This also:

* Adds PKG_SOURCE_DATE and PKG_SOURCE_VERSION to PKG_VERSION (by
  default, when PKG_VERSION is defined, PKG_SOURCE_DATE and
  PKG_SOURCE_VERSION are not used)

* Fixes package copyright

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
23 months agolua-eco: Add package
Jianhui Zhao [Tue, 3 May 2022 09:18:47 +0000 (17:18 +0800)]
lua-eco: Add package

Lua-eco is a `Lua coroutine` library which was implemented based on `IO event`.

Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
23 months agotelldus-core: use proper cmake argp
Rosen Penev [Sun, 17 Apr 2022 02:15:20 +0000 (19:15 -0700)]
telldus-core: use proper cmake argp

Avoids linking to argp-standalone with glibc.

Some other minor fixes.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
23 months agosnort3: update to 3.1.29.0
W. Michael Petullo [Tue, 10 May 2022 19:39:07 +0000 (14:39 -0500)]
snort3: update to 3.1.29.0

Signed-off-by: W. Michael Petullo <mike@flyn.org>
23 months agolibdaq3: update to 3.0.7
W. Michael Petullo [Tue, 10 May 2022 19:38:00 +0000 (14:38 -0500)]
libdaq3: update to 3.0.7

Signed-off-by: W. Michael Petullo <mike@flyn.org>
23 months agomodemmanager: report network initiated disconnections to netifd
Aleksander Morgado [Wed, 4 May 2022 12:01:57 +0000 (14:01 +0200)]
modemmanager: report network initiated disconnections to netifd

The new connection dispatcher scripts support integrated in
ModemManager 1.18.8 allows us to provide a openwrt-specific dispatcher
script used to report netifd that the underlying network connection is
down.

See also https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/merge_requests/775

Fixes https://github.com/openwrt/openwrt/issues/8368
Fixes https://github.com/openwrt/packages/issues/14096

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
23 months agomodemmanager: install available FCC unlock scripts
Aleksander Morgado [Tue, 29 Mar 2022 11:12:43 +0000 (13:12 +0200)]
modemmanager: install available FCC unlock scripts

The FCC unlock scripts are installed but not enabled by default.

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
23 months agomodemmanager: bump to 1.18.8
Aleksander Morgado [Wed, 4 May 2022 11:37:14 +0000 (13:37 +0200)]
modemmanager: bump to 1.18.8

Also removed two patches that are already included in the upstream
release.

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
23 months agolibqmi: bump to 1.30.6
Aleksander Morgado [Wed, 4 May 2022 11:36:28 +0000 (13:36 +0200)]
libqmi: bump to 1.30.6

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
23 months agolibmbim: bump to 1.26.4
Aleksander Morgado [Wed, 4 May 2022 11:35:54 +0000 (13:35 +0200)]
libmbim: bump to 1.26.4

Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
23 months agoci: Look for changed packages in the PR branch only
Jeffery To [Wed, 11 May 2022 09:21:52 +0000 (17:21 +0800)]
ci: Look for changed packages in the PR branch only

Fixes https://github.com/openwrt/packages/issues/15267.

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
23 months agodockerd: Add firewall independent dependencies
Gerard Ryan [Wed, 27 Apr 2022 11:11:14 +0000 (21:11 +1000)]
dockerd: Add firewall independent dependencies

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
23 months agodockerd: Sorted dependencies for better diffs
Gerard Ryan [Sun, 1 May 2022 04:07:33 +0000 (14:07 +1000)]
dockerd: Sorted dependencies for better diffs

Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
23 months agoslirp4netns: update to v1.2.0
Oskari Rauta [Mon, 9 May 2022 20:22:47 +0000 (23:22 +0300)]
slirp4netns: update to v1.2.0

Changelog:
https://github.com/rootless-containers/slirp4netns/releases

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
23 months agolxc: export systemd cgroups after install
Michal Vasilek [Fri, 8 Apr 2022 20:49:53 +0000 (22:49 +0200)]
lxc: export systemd cgroups after install

otherwise, a user would have to either manually run /etc/init.d/lxc-auto
boot or reboot the system to start using lxc.

Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
23 months agogolang: Update to 1.18.2
Jeffery To [Sat, 14 May 2022 18:11:51 +0000 (02:11 +0800)]
golang: Update to 1.18.2

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
23 months agomicropython-lib: Update to latest master
Jeffery To [Sat, 14 May 2022 18:42:10 +0000 (02:42 +0800)]
micropython-lib: Update to latest master

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
23 months agobluez-tools: fix compile with BUILD_NLS
Josef Schlehofer [Mon, 9 May 2022 13:49:55 +0000 (15:49 +0200)]
bluez-tools: fix compile with BUILD_NLS

Fixes:
ccache_cc  -Os -pipe -mcpu=cortex-a53 -fno-caller-saves -fno-plt -fhonour-copts -Wno-error=unused-but-set-variable -Wno-error=unused-result -fmacro-prefix-map=/mox-openwrt-master/build/build_dir/target-aarch64_cortex-a53_musl/bluez-tools-20201025.f653217=bluez-tools-20201025.f653217 -Wformat -Werror=format-security -DPIC -fPIC -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wl,-z,now -Wl,-z,relro   -L/mox-openwrt-master/build/staging_dir/toolchain-aarch64_cortex-a53_gcc-11.2.0_musl/usr/lib -L/mox-openwrt-master/build/staging_dir/toolchain-aarch64_cortex-a53_gcc-11.2.0_musl/lib -DPIC -fPIC -specs=/mox-openwrt-master/build/include/hardened-ld-pie.specs -znow -zrelro  -o bt-adapter lib/agent-helper.o lib/dbus-common.o lib/helpers.o lib/manager.o lib/obex_agent.o lib/properties.o lib/sdp.o lib/bluez/adapter.o lib/bluez/agent_manager.o lib/bluez/alert_agent.o lib/bluez/alert.o lib/bluez/cycling_speed.o lib/bluez/cycling_speed_manager.o lib/bluez/device.o lib/bluez/health_channel.o lib/bluez/health_device.o lib/bluez/health_manager.o lib/bluez/heart_rate.o lib/bluez/heart_rate_manager.o lib/bluez/media.o lib/bluez/media_control.o lib/bluez/media_player.o lib/bluez/network.o lib/bluez/network_server.o lib/bluez/obex/obex_agent_manager.o lib/bluez/obex/obex_client.o lib/bluez/obex/obex_file_transfer.o lib/bluez/obex/obex_message_access.o lib/bluez/obex/obex_message.o lib/bluez/obex/obex_object_push.o lib/bluez/obex/obex_phonebook_access.o lib/bluez/obex/obex_session.o lib/bluez/obex/obex_synchronization.o lib/bluez/obex/obex_transfer.o lib/bluez/profile_manager.o lib/bluez/proximity_monitor.o lib/bluez/proximity_reporter.o lib/bluez/sim_access.o lib/bluez/thermometer.o lib/bluez/thermometer_manager.o bt-adapter.o -L/mox-openwrt-master/build/staging_dir/target-aarch64_cortex-a53_musl/usr/lib -lglib-2.0 -lintl  -L/mox-openwrt-master/build/staging_dir/target-aarch64_cortex-a53_musl/usr/lib -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lintl
/mox-openwrt-master/build/staging_dir/toolchain-aarch64_cortex-a53_gcc-11.2.0_musl/lib/gcc/aarch64-openwrt-linux-musl/11.2.0/../../../../aarch64-openwrt-linux-musl/bin/ld: cannot find -lintl
/mox-openwrt-master/build/staging_dir/toolchain-aarch64_cortex-a53_gcc-11.2.0_musl/lib/gcc/aarch64-openwrt-linux-musl/11.2.0/../../../../aarch64-openwrt-linux-musl/bin/ld: cannot find -lintl
collect2: error: ld returned 1 exit status
make[5]: *** [Makefile:580: bt-adapter] Error 1

Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
2 years agoMerge pull request #18293 from hexian000/privoxy_bugfix
Jeffery To [Sat, 14 May 2022 17:20:41 +0000 (01:20 +0800)]
Merge pull request #18293 from hexian000/privoxy_bugfix

privoxy: prevent killing the init script itself when stopping service

2 years agodnsproxy: Update to 0.42.3
Tianling Shen [Sat, 14 May 2022 09:26:04 +0000 (17:26 +0800)]
dnsproxy: Update to 0.42.3

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2 years agocloudflared: Update to 2022.5.1
Tianling Shen [Sat, 14 May 2022 09:24:48 +0000 (17:24 +0800)]
cloudflared: Update to 2022.5.1

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
2 years agoprivoxy: update to 3.0.33 and fix the init script 18293/head
He Xian [Wed, 13 Apr 2022 09:32:48 +0000 (17:32 +0800)]
privoxy: update to 3.0.33 and fix the init script

1. Fixed init script would kill itself when trying to stop a service.
2. Upgrade privoxy release to 3.0.33
3. Set PKG_RELEASE to AUTORELEASE

Signed-off-by: He Xian <hexian000@outlook.com>
2 years agohaproxy: Update HAProxy to v2.4.16
Christian Lachner [Mon, 9 May 2022 06:31:08 +0000 (08:31 +0200)]
haproxy: Update HAProxy to v2.4.16

- Update haproxy download URL and hash

Signed-off-by: Christian Lachner <gladiac@gmail.com>
2 years agoMerge pull request #18516 from robje/cable-type
Jeffery To [Fri, 13 May 2022 08:37:00 +0000 (16:37 +0800)]
Merge pull request #18516 from robje/cable-type

nut: add cable type nut driver config

2 years agonut: add cable type nut driver config 18516/head
Rob J. Epping [Wed, 11 May 2022 21:17:06 +0000 (23:17 +0200)]
nut: add cable type nut driver config

at least driver apcsmart-old (maybe more) allow for specifying the
type of cable used. My old UPS does will not function when cable type
is not specified.

This will add support for configuration option 'cable'

Signed-off-by: Rob J. Epping <epping@renf.us>
2 years agoMerge pull request #18467 from AdorableJiang/mydnsjp
Jeffery To [Thu, 12 May 2022 21:45:06 +0000 (05:45 +0800)]
Merge pull request #18467 from AdorableJiang/mydnsjp

ddns-scripts: mydns.ip to mydns.jp

2 years agoMerge pull request #18485 from oskarirauta/crun
Jeffery To [Thu, 12 May 2022 19:59:16 +0000 (03:59 +0800)]
Merge pull request #18485 from oskarirauta/crun

crun: update to version 1.4.5

2 years agoMerge pull request #18483 from oskarirauta/nsutils
Jeffery To [Thu, 12 May 2022 19:25:24 +0000 (03:25 +0800)]
Merge pull request #18483 from oskarirauta/nsutils

nsutils: version bump

2 years agoMerge pull request #18521 from paper42/miniflux-2.0.36
Josef Schlehofer [Thu, 12 May 2022 19:15:00 +0000 (21:15 +0200)]
Merge pull request #18521 from paper42/miniflux-2.0.36

miniflux: update to 2.0.36

2 years agotailscale: update to version 1.24.2
Magnus Kessler [Thu, 12 May 2022 05:13:52 +0000 (07:13 +0200)]
tailscale: update to version 1.24.2

Signed-off-by: Magnus Kessler <Magnus.Kessler@gmx.net>
2 years agonsutils: bump to new release 18483/head
Oskari Rauta [Mon, 9 May 2022 20:38:57 +0000 (23:38 +0300)]
nsutils: bump to new release

Few minor changes, like -h flag for program (help).
Added URL to package definition.

No new version release with version number, so version stays
as is, but pkg_release is still bumbed with this commit.

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
2 years agominiflux: update to 2.0.36 18521/head
Michal Vasilek [Thu, 12 May 2022 16:49:32 +0000 (18:49 +0200)]
miniflux: update to 2.0.36

Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
2 years agoddns-scripts: mydns.ip to mydns.jp 18467/head
Shengjiang Quan [Thu, 12 May 2022 11:39:12 +0000 (20:39 +0900)]
ddns-scripts: mydns.ip to mydns.jp

The provider is `mydns.jp` not `mydns.ip` which is wrong and misleading.

Signed-off-by: Shengjiang Quan <qsj287068067@126.com>
2 years agoMerge pull request #18520 from rsalvaterra/oc-bump
Nikos Mavrogiannopoulos [Thu, 12 May 2022 10:44:07 +0000 (12:44 +0200)]
Merge pull request #18520 from rsalvaterra/oc-bump

openconnect: bump to version 9.01

2 years agoopenconnect: bump to version 9.01 18520/head
Rui Salvaterra [Thu, 12 May 2022 09:22:19 +0000 (10:22 +0100)]
openconnect: bump to version 9.01

Now with basic support for the Array Networks SSL VPN protocol.

Also fix the OpenSSL build. OpenConnect requires support for deprecated APIs,
for the time being, so select them if compiling against OpenSSL.

Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
2 years agoMerge pull request #18443 from WereCatf/hexedit
Jeffery To [Thu, 12 May 2022 07:34:52 +0000 (15:34 +0800)]
Merge pull request #18443 from WereCatf/hexedit

hexedit: Add new package

2 years agohexedit: Add new package 18443/head
Nita Vesa [Tue, 3 May 2022 06:24:20 +0000 (09:24 +0300)]
hexedit: Add new package

Viewer and editor in hexadecimal or ASCII for files or devices

Signed-off-by: Nita Vesa <werecatf@outlook.com>
2 years agogst1-libav: update to 1.20.2
W. Michael Petullo [Wed, 11 May 2022 00:39:36 +0000 (19:39 -0500)]
gst1-libav: update to 1.20.2

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agogst1-plugins-ugly: update to 1.20.2
W. Michael Petullo [Wed, 11 May 2022 00:39:11 +0000 (19:39 -0500)]
gst1-plugins-ugly: update to 1.20.2

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agogst1-plugins-bad: update to 1.20.2
W. Michael Petullo [Wed, 11 May 2022 00:38:52 +0000 (19:38 -0500)]
gst1-plugins-bad: update to 1.20.2

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agogst1-plugins-good: update to 1.20.2
W. Michael Petullo [Wed, 11 May 2022 00:38:28 +0000 (19:38 -0500)]
gst1-plugins-good: update to 1.20.2

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agogst1-plugins-base: update to 1.20.2
W. Michael Petullo [Wed, 11 May 2022 00:38:10 +0000 (19:38 -0500)]
gst1-plugins-base: update to 1.20.2

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agogstreamer1: update to 1.20.2
W. Michael Petullo [Wed, 11 May 2022 00:37:35 +0000 (19:37 -0500)]
gstreamer1: update to 1.20.2

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agopython3-networkx: update to 2.8
W. Michael Petullo [Tue, 10 May 2022 19:44:18 +0000 (14:44 -0500)]
python3-networkx: update to 2.8

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agodmapd: update to 0.0.91
W. Michael Petullo [Tue, 10 May 2022 19:50:28 +0000 (14:50 -0500)]
dmapd: update to 0.0.91

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agoluasocket: update to 3.0.0
W. Michael Petullo [Tue, 10 May 2022 19:43:19 +0000 (14:43 -0500)]
luasocket: update to 3.0.0

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agohwloc: update to 2.7.1
W. Michael Petullo [Tue, 10 May 2022 19:46:33 +0000 (14:46 -0500)]
hwloc: update to 2.7.1

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agolibgcrypt: update to 1.10.1
W. Michael Petullo [Tue, 10 May 2022 19:47:45 +0000 (14:47 -0500)]
libgcrypt: update to 1.10.1

Signed-off-by: W. Michael Petullo <mike@flyn.org>