feed/packages.git
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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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

2 years 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>
2 years 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

2 years 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>
2 years 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>
2 years 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>
2 years 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

2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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.

2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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

2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years 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>
2 years agolibgee: update to 0.20.5
W. Michael Petullo [Tue, 10 May 2022 19:30:55 +0000 (14:30 -0500)]
libgee: update to 0.20.5

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

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agoopenldap: update to 2.6.2
W. Michael Petullo [Tue, 10 May 2022 19:49:57 +0000 (14:49 -0500)]
openldap: update to 2.6.2

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agonfdump: update to 1.6.24
W. Michael Petullo [Tue, 10 May 2022 19:41:20 +0000 (14:41 -0500)]
nfdump: update to 1.6.24

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agovips: update to 8.12.2
W. Michael Petullo [Tue, 10 May 2022 19:51:04 +0000 (14:51 -0500)]
vips: update to 8.12.2

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agolibgpg-error: update to 1.45
W. Michael Petullo [Tue, 10 May 2022 19:49:18 +0000 (14:49 -0500)]
libgpg-error: update to 1.45

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agokrb5: update to 1.19.3
W. Michael Petullo [Tue, 10 May 2022 19:40:20 +0000 (14:40 -0500)]
krb5: update to 1.19.3

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agocyrus-sasl: update to 2.1.28
W. Michael Petullo [Tue, 10 May 2022 19:45:22 +0000 (14:45 -0500)]
cyrus-sasl: update to 2.1.28

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2 years agoxr_usb_serial_common: bump to 2022-03-30
Eneas U de Queiroz [Thu, 5 May 2022 13:25:10 +0000 (10:25 -0300)]
xr_usb_serial_common: bump to 2022-03-30

This is the latest commit that touches the xr_usb_serial_common-1a dir.
The changes are restricted to whitespace fixes and kernel version
adaptations:
ecc6ebe xr_usb: Use tty_driver_kref_put for kernel 5.15 and above
caf6d25 xr_usb: Use tty_alloc_driver for kernel 5.15 and above
a42b7e6 xr_usb: Compilation fixes for kernel 5.14
497adb7 #39 fix compilation for newer linux kernels
9103471 xr_usb: fix some whitespace errors

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
2 years agoMerge pull request #18488 from oskarirauta/podman
Jeffery To [Wed, 11 May 2022 21:04:14 +0000 (05:04 +0800)]
Merge pull request #18488 from oskarirauta/podman

podman: update to 4.1.0

2 years agoMerge pull request #18486 from oskarirauta/libslirp
Jeffery To [Wed, 11 May 2022 21:01:38 +0000 (05:01 +0800)]
Merge pull request #18486 from oskarirauta/libslirp

libslirp: update to v4.7.0

2 years agoMerge pull request #18484 from oskarirauta/cni
Jeffery To [Wed, 11 May 2022 20:41:27 +0000 (04:41 +0800)]
Merge pull request #18484 from oskarirauta/cni

cni: update to v1.1.0

2 years agoMerge pull request #18471 from liudf0716/xfrpc
Jeffery To [Wed, 11 May 2022 19:59:10 +0000 (03:59 +0800)]
Merge pull request #18471 from liudf0716/xfrpc

xfrpc: Update to 1.05.548