Josef Schlehofer [Tue, 19 Sep 2023 23:48:12 +0000 (01:48 +0200)]
czmq: drop libpcre dependency
It seems like the libpcre dependency was added by mistake.
While checking in the source code of czmq (Makefile.am, CMakeLists.txt),
I see there are several dependencies, but there isn't PCRE.
Fixes: 936a48a ("czmq: add new package")
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Josef Schlehofer [Tue, 19 Sep 2023 21:59:29 +0000 (23:59 +0200)]
msmtp: update to version 1.8.24
Release notes:
https://github.com/marlam/msmtp-mirror/commit/ef62463e4d0dc1f8e7f1db4f8dd35650999c13f9X
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Jeffery To [Wed, 20 Sep 2023 09:57:00 +0000 (17:57 +0800)]
python3-networkx: Update to 3.1, rename source package
This renames the source package to python-networkx to match other Python
packages.
This also updates the list of dependencies.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Jeffery To [Wed, 20 Sep 2023 11:05:24 +0000 (19:05 +0800)]
setools: Update to 4.4.3
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Hirokazu MORIKAWA [Wed, 20 Sep 2023 07:01:35 +0000 (16:01 +0900)]
node: bump to v18.18.0
Update to v18.18.0
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
Tianling Shen [Thu, 21 Sep 2023 00:41:55 +0000 (08:41 +0800)]
Merge pull request #22134 from jefferyto/rust-cargo-rustflags
rust: Set rustflags by environment variable
Matthias Schiffer [Wed, 20 Sep 2023 19:01:01 +0000 (21:01 +0200)]
fastd: update repository URL
I've changed my username to neocturne.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Matthias Schiffer [Wed, 20 Sep 2023 19:00:32 +0000 (21:00 +0200)]
libuecc: update repository URL
I've changed my username to neocturne.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
Josef Schlehofer [Tue, 19 Sep 2023 23:01:48 +0000 (01:01 +0200)]
bind: update to version 9.18.18
Release notes:
https://downloads.isc.org/isc/bind9/9.18.18/doc/arm/html/notes.html#notes-for-bind-9-18-18
https://downloads.isc.org/isc/bind9/9.18.17/doc/arm/html/notes.html#notes-for-bind-9-18-17
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Oskari Rauta [Tue, 19 Sep 2023 14:03:05 +0000 (17:03 +0300)]
slirp4netns: update to 1.2.2
v1.2.2 changes:
- Enabled reproducible builds
v1.2.1 changes:
- sandbox: Add support for escaping resolv.conf symlinks. This fixes usage in WSL environments which symlinks /etc/resolv.conf under a shared location under /mnt.
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Jan Hák [Tue, 19 Sep 2023 08:51:30 +0000 (10:51 +0200)]
knot: update to version 3.3.1
Signed-off-by: Jan Hák <jan.hak@nic.cz>
Tianling Shen [Tue, 19 Sep 2023 01:58:18 +0000 (09:58 +0800)]
rclone: Update to 1.64.0
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Hannu Nyman [Mon, 18 Sep 2023 17:16:14 +0000 (20:16 +0300)]
collectd: remove target dependency from cpufreq plugin
We currently have more package architectures supporting
CPU frequency scaling than earlier, and the package architecture
vs. CPU target SDK matching does not fully reflect that.
(E.g. aarch64_cortex-a53 is currently using bcm27xx/bcm2710)
Simplify things by removing the target dependency and let the plugin
be built for all architectures.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Florian Eckert [Mon, 18 Sep 2023 09:46:17 +0000 (11:46 +0200)]
Merge pull request #22130 from oskarirauta/dockerd
dockerd: busybox compatibility
Florian Eckert [Mon, 18 Sep 2023 06:05:08 +0000 (08:05 +0200)]
Merge pull request #22126 from oskarirauta/podman
podman: depend on catatonit
Jeffery To [Mon, 18 Sep 2023 01:30:56 +0000 (09:30 +0800)]
rust: Set rustflags by environment variable
In order to use $(RUSTC_TARGET_ARCH) in HOST_BUILD_DIR, the line to
include rust-values.mk in the Rust makefile was moved in
f489e019ac4a15e974518d9928ef913a157d135a, causing it to be included
before package.mk is included.
This had the side effect of preventing "-lssp_nonshared" from being
added to RUSTC_LDFLAGS, because PKG_SSP is indirectly set by package.mk
(package.mk includes hardening.mk, hardening.mk sets PKG_SSP).
There is a deeper issue; it is the Rust package's PKG_SSP value that
causes RUSTC_LDFLAGS to be set and written to the Cargo config file. For
packages that use Rust to build, their PKG_SSP value does not affect the
linker flag.
This sets rustflags with the RUSTFLAGS environment variable, instead of
writing the value to the Cargo config file, allowing PKG_SSP from the
package being built to be used and for the package being built to modify
the rustflags used.
This also:
* Fix "-lssp_nonshared" being added to TARGET_CFLAGS instead of
RUSTC_LDFLAGS, when CONFIG_PKG_CC_STACKPROTECTOR_STRONG is set.
* Remove the use of $(RUSTC_TARGET_ARCH) in HOST_BUILD_DIR and move the
include line for rust-values.mk back to after package.mk.
Since the host build directory was moved under the target build
directory in
efdbac38dc8b649ca26b49fac27abeb5cf76cd28, it is no longer
necessary to separate build directories with RUSTC_TARGET_ARCH;
$(BUILD_DIR) already separates build directories by target.
* Add BUILDONLY:=1, as the Rust package does not build a target package.
* Install the Cargo config file as "config.toml" instead of "config", as
this is the preferred form[1].
* Rename RUST_CFLAGS to RUSTC_CFLAGS and CONFIG_HOST_SUFFIX to
RUSTC_HOST_SUFFIX, for consistency.
* Allow CARGO_VARS to be set before rust-values.mk is included.
[1]: https://doc.rust-lang.org/cargo/reference/config.html#hierarchical-structure
Fixes: f489e019ac4a ("rust: compile host package per target")
Fixes: 83785a7ce016 ("rust-lang: Add the rust language support")
Fixes: https://github.com/openwrt/packages/issues/22133
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Philip Prindeville [Sun, 17 Sep 2023 22:19:31 +0000 (16:19 -0600)]
Merge pull request #22091 from pprindeville/isc-dhcp-fix-require-parameters-delim
isc-dhcpd: Generate correct delimiter in hex strings
Philip Prindeville [Mon, 11 Sep 2023 19:59:30 +0000 (13:59 -0600)]
isc-dhcp: Allow per-subnet domain names
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Philip Prindeville [Mon, 11 Sep 2023 19:12:39 +0000 (13:12 -0600)]
isc-dhcpd: Generate correct delimiter in hex strings
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Philip Prindeville [Sun, 17 Sep 2023 20:25:19 +0000 (14:25 -0600)]
Merge pull request #22132 from pprindeville/perl-text-csv_xs-update-1.51
perl-text-csv_xs: Update to 1.51
Philip Prindeville [Sun, 17 Sep 2023 20:17:08 +0000 (14:17 -0600)]
Merge pull request #22131 from pprindeville/perl-cgi-update-4.57
perl-cgi: Update to 4.57
Philip Prindeville [Sun, 17 Sep 2023 19:51:59 +0000 (13:51 -0600)]
perl-text-csv_xs: Update to 1.51
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Philip Prindeville [Sun, 17 Sep 2023 19:43:54 +0000 (13:43 -0600)]
perl-cgi: Update to 4.57
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Oskari Rauta [Sun, 17 Sep 2023 13:36:27 +0000 (16:36 +0300)]
dockerd: busybox compatibility
build hosts with busybox fail with long options on rm
command. Short versions are supported by all, so this
makes it script compatible with busybox hosts as well.
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Ted Hess [Sun, 17 Sep 2023 11:13:57 +0000 (07:13 -0400)]
Merge pull request #22128 from BKPepe/ffmpeg
ffmpeg: update to version 5.1.3
Josef Schlehofer [Sat, 16 Sep 2023 10:36:17 +0000 (12:36 +0200)]
ffmpeg: update to version 5.1.3
Fixes CVEs:
CVE-2022-3964 [1]
CVE-2022-3965 [2]
[1] https://nvd.nist.gov/vuln/detail/CVE-2022-3964
[2] https://nvd.nist.gov/vuln/detail/CVE-2022-3965
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Leo Douglas [Fri, 15 Sep 2023 02:32:57 +0000 (10:32 +0800)]
iperf3: update to 3.15
see changelog: https://github.com/esnet/iperf/releases/tag/3.15.
Signed-off-by: Leo Douglas <douglarek@gmail.com>
Oskari Rauta [Sun, 17 Sep 2023 03:55:22 +0000 (06:55 +0300)]
podman: depend on catatonit
podman still seems to use catatonit with
rootless containers. It seems that it is
possible to use alternatives, such as tini,
but maybe go the same way they went on mainstream.
This PR just adds catatonit to depends.
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Stan Grishin [Sun, 17 Sep 2023 01:59:22 +0000 (18:59 -0700)]
Merge pull request #22122 from stangri/master-https-dns-proxy
https-dns-proxy: improve boot up start
Stan Grishin [Sat, 16 Sep 2023 23:44:31 +0000 (23:44 +0000)]
https-dns-proxy: improve boot up startup
Signed-off-by: Stan Grishin <stangri@melmac.ca>
Stan Grishin [Sat, 16 Sep 2023 23:43:31 +0000 (16:43 -0700)]
Merge pull request #22118 from stangri/master-adblock-fast
adblock-fast: bugfix: remove domains on allow
Oskari Rauta [Sat, 16 Sep 2023 08:26:11 +0000 (11:26 +0300)]
aardvark-dns: update to 1.7.0
Changelog: https://github.com/containers/aardvark-dns/compare/v1.6.0...v1.7.0
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Oskari Rauta [Sat, 16 Sep 2023 08:16:17 +0000 (11:16 +0300)]
netavark: update to 1.7.0
Changelog: https://github.com/containers/netavark/compare/v1.6.0...v1.7.0
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Oskari Rauta [Sat, 16 Sep 2023 08:05:42 +0000 (11:05 +0300)]
podman: update to 4.6.2
patch refreshed.
Changelog:
- Fixed a performance issue when calculating diff sizes in overlay. The podman system df command should see a significant performance improvement.
- Fixed a bug where containers in a pod would use the pod restart policy over the set container restart policy.
- Fixed a bug in the Compat Build endpoint where the pull query parameter did not parse 0/1 as a boolean.
- Updated the containers/storage library to v1.48.1
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Oskari Rauta [Sat, 16 Sep 2023 07:48:46 +0000 (10:48 +0300)]
crun: update to 1.9
Changes:
- support arbitrary idmapped mounts. Now it is possible to specify a mapping for any type of mount, not only bind mounts.
- add support for "ridmap" mount option to support recursive idmapped mounts.
- fix check for oom_score_adj. Write the oom_score_adj file even when the new value is 0.
- features: Support mountExtensions.
- correctly handle unknown signal string when it doesn't start with a digit.
- do not attempt to join again already joined namespace.
- wasmer: use latest wasix API.
- refresh libocispec
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Oskari Rauta [Sat, 16 Sep 2023 07:36:37 +0000 (10:36 +0300)]
conmon: update to 2.1.8
Bug fixes:
- stdio: ignore EIO for terminals
- ensure console socket buffers are properly sized
- conmon: drop return after pexit()
- ctrl: make accept4 failures fatal
- logging: avoid opening /dev/null for each write
- oom: restore old OOM score
- Use default umask 0022
Misc changes:
- cli: log parsing errors to stderr
- Changes to build conmon for riscv64
- Changes to build conmon for ppc64le
- Fix close_other_fds on FreeBSD
Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
Stan Grishin [Sat, 16 Sep 2023 13:11:58 +0000 (13:11 +0000)]
adblock-fast: bugfix: remove domains on allow
* fix sed command to properly remove allowed domains from block-file
Signed-off-by: Stan Grishin <stangri@melmac.ca>
Stan Grishin [Sat, 16 Sep 2023 10:25:03 +0000 (03:25 -0700)]
Merge pull request #22109 from BKPepe/curl-update
curl: update to version 8.3.0
Josef Schlehofer [Sun, 3 Sep 2023 11:08:25 +0000 (13:08 +0200)]
bandwidthd: drop this package
This package is not maintained by upstream anymore as they replace it by Ntopng 3. [1]
Upstream repository is archived and read only since February 2022 [2]
[1] https://community.nethserver.org/t/bandwidthd-for-nethserver-7/4071/18
[2] https://github.com/NethServer/bandwidthd
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Josef Schlehofer [Fri, 15 Sep 2023 08:11:51 +0000 (10:11 +0200)]
curl: update to version 8.3.0
Release notes:
https://curl.se/changes.html#8_3_0
Fixes:
CVE-2023-38039 [1]
[1] https://curl.se/docs/CVE-2023-38039.html
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Martin Schiller [Thu, 14 Sep 2023 07:48:00 +0000 (09:48 +0200)]
ovpn-dco: fix package dependencies
We have to add an "IPV6:" in front of the kmod-udptunnel6 to fix
redundant dependencies with the openvpn-* packages.
Signed-off-by: Martin Schiller <ms@dev.tdt.de>
Olivier Poitrey [Thu, 14 Sep 2023 11:56:54 +0000 (11:56 +0000)]
nextdns: Update to version 1.40.1
Signed-off-by: Olivier Poitrey <rs@nextdns.io>
Tianling Shen [Fri, 15 Sep 2023 15:41:05 +0000 (23:41 +0800)]
Merge pull request #22104 from douglarek/zt
zerotier: update to 1.12.2
Josef Schlehofer [Mon, 4 Sep 2023 12:18:28 +0000 (14:18 +0200)]
dnscrypt-proxy2: update to version 2.1.5
Fixes compilation with Go 1.21+.
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Josef Schlehofer [Sun, 3 Sep 2023 08:26:21 +0000 (10:26 +0200)]
syslog-ng: update to version 4.3.1
Makefile changes:
- Since version 4.3.0, there is required to use pcre2 instead of pcre
Reference: https://github.com/syslog-ng/syslog-ng/pull/4537
- Disable c++ support by default to avoid picking libstdcpp dependency
Reference: https://github.com/syslog-ng/syslog-ng/pull/4484
Config changes:
- Bump version in config file
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
Leo Douglas [Fri, 15 Sep 2023 02:17:38 +0000 (10:17 +0800)]
zerotier: update to 1.12.2
see changelog: https://github.com/zerotier/ZeroTierOne/releases/tag/1.12.2.
Signed-off-by: Leo Douglas <douglarek@gmail.com>
Leo Douglas [Thu, 14 Sep 2023 02:15:03 +0000 (10:15 +0800)]
sing-box: update to 1.4.3
see changelog: https://github.com/SagerNet/sing-box/releases/tag/v1.4.3
Signed-off-by: Leo Douglas <douglarek@gmail.com>
Tyler Young [Thu, 14 Sep 2023 15:14:43 +0000 (11:14 -0400)]
tailscale: set nftables as default
This changes the default firewall method used by Tailscale to nftables.
The 'autodetection' mode is only supported by arm64 and amd64 for now[1].
This causes mips devices to not do proper detection and incorrectly default back to
iptables.
I added a fw_mode variable to the tailscale.conf file that could be
set to iptables for easy conversion for someone still using iptables.
I was able to test on an older mips device and my current aarch64
without issues.
Also a few readme updates to bring it up to the current status.
1. https://github.com/tailscale/tailscale/blob/
dc7aa98b768bf82017aa5cc82a62dd4d685f811d/util/linuxfw/linuxfw_unsupported.go#L4C58-L4C58
Signed-off-by: Tyler Young <git@yfh.addy.io>
John Audia [Tue, 12 Sep 2023 18:59:10 +0000 (14:59 -0400)]
snort3: update to 3.1.70.0
Build system: x86/64
Build-tested: x86/64/AMD Cezanne
Run-tested: x86/64/AMD Cezanne
,,_ -*> Snort++ <*-
o" )~ Version 3.1.70.0
'''' By Martin Roesch & The Snort Team
http://snort.org/contact#team
Copyright (C) 2014-2023 Cisco and/or its affiliates. All rights reserved.
Copyright (C) 1998-2013 Sourcefire, Inc., et al.
Using DAQ version 3.0.12
Using LuaJIT version 2.1.0-beta3
Using OpenSSL 3.0.10 1 Aug 2023
Using libpcap version 1.10.4 (with TPACKET_V3)
Using PCRE version 8.45 2021-06-15
Using ZLIB version 1.2.13
Using Hyperscan version 5.4.2 2023-09-07
Signed-off-by: John Audia <therealgraysky@proton.me>
Jeffery To [Mon, 11 Sep 2023 03:21:39 +0000 (11:21 +0800)]
python-setuptools: Update to 68.2.0
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Jeffery To [Mon, 11 Sep 2023 03:19:24 +0000 (11:19 +0800)]
python-build: Update to 1.0.3
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Tianling Shen [Thu, 14 Sep 2023 13:28:06 +0000 (21:28 +0800)]
Merge pull request #22095 from jefferyto/rust-arch-depends
rust: Move RUST_ARCH_DEPENDS into rust-values.mk
Peter van Dijk [Fri, 8 Sep 2023 11:16:21 +0000 (13:16 +0200)]
dnsdist: update to 1.8.1
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
Jeffery To [Tue, 12 Sep 2023 20:27:11 +0000 (04:27 +0800)]
rust: Move RUST_ARCH_DEPENDS into rust-values.mk
This allows other packages access to RUST_ARCH_DEPENDS by including
rust-values.mk, instead of rust-package.mk which also sets
Build/Compile.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Florian Eckert [Tue, 12 Sep 2023 14:03:16 +0000 (16:03 +0200)]
mwan3: fix mwan3_connected ubus output
During the renameing of mwan3_connected_v4 to mwan3_connected_ipv4 and
mwan3_connected_v6 to mwan3_connected_ipv6 the adjustment in the ubus
call was forgotten. This commit fixes this.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Carsten Schuette [Wed, 6 Sep 2023 12:42:12 +0000 (14:42 +0200)]
dawn: Add PKG_BUILD_FLAGS:=no-lto because lto causes strange SegFaults
Signed-off-by: Carsten Schuette <schuettecarsten@googlemail.com>
Carsten Schuette [Wed, 6 Sep 2023 07:09:02 +0000 (09:09 +0200)]
dawn: Update to 2023-05-14
Signed-off-by: Carsten Schuette <schuettecarsten@googlemail.com>
Tianling Shen [Mon, 11 Sep 2023 01:55:32 +0000 (09:55 +0800)]
Merge pull request #22083 from jefferyto/golang-1.21.1
golang: Update to 1.21.1
Jeffery To [Sun, 10 Sep 2023 19:57:45 +0000 (03:57 +0800)]
golang: Update to 1.21.1
Includes fixes for:
* CVE-2023-39318: html/template: improper handling of HTML-like comments
within script contexts
* CVE-2023-39319: html/template: improper handling of special tags
within script contexts
* CVE-2023-39320: cmd/go: go.mod toolchain directive allows arbitrary
execution
* CVE-2023-39321 and CVE-2023-39322: crypto/tls: panic when processing
partial post-handshake message in QUICConn.HandleData
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Alexandru Ardelean [Sun, 10 Sep 2023 17:07:49 +0000 (20:07 +0300)]
Merge pull request #21935 from G10h4ck/libssh-mbedtls
libssh: compile against MbedTLS instead of OpenSSL
Alexandru Ardelean [Sun, 10 Sep 2023 17:04:42 +0000 (20:04 +0300)]
Merge pull request #21958 from graysky2/ncdu
ncdu: update to 1.18.1
Alexandru Ardelean [Sun, 10 Sep 2023 17:04:08 +0000 (20:04 +0300)]
Merge pull request #21856 from AuthorReflex/ovpn-2.6.6
openvpn: update to 2.6.6
Alexandru Ardelean [Sun, 10 Sep 2023 17:02:01 +0000 (20:02 +0300)]
Merge pull request #22072 from commodo/python-updates1
chardet,numpy,django: bump versions
Alexandru Ardelean [Sun, 10 Sep 2023 13:18:35 +0000 (16:18 +0300)]
Merge pull request #22043 from jefferyto/python-crcmod-package-section
python-crcmod: Fix package section
Alexandru Ardelean [Sun, 10 Sep 2023 13:18:06 +0000 (16:18 +0300)]
Merge pull request #22067 from robimarko/dbus
dbus: update to 1.14.10 and take ower maintainership
Alexandru Ardelean [Sun, 10 Sep 2023 13:17:11 +0000 (16:17 +0300)]
Merge pull request #22030 from BKPepe/retake-packages
treewide: take maintainership from Karel
Alexandru Ardelean [Sun, 10 Sep 2023 13:14:59 +0000 (16:14 +0300)]
Merge pull request #22039 from jefferyto/xmltodict-0.13.0
xmltodict: Update to 0.13.0, rename source package
Alexandru Ardelean [Sun, 10 Sep 2023 13:14:41 +0000 (16:14 +0300)]
Merge pull request #22038 from jefferyto/ruamel-yaml-0.17.32
ruamel-yaml: Update to 0.17.32, rename source package
Alexandru Ardelean [Sun, 10 Sep 2023 13:14:15 +0000 (16:14 +0300)]
Merge pull request #22037 from jefferyto/python-zipp-3.16.2
python-zipp: Update to 3.16.2, update list of dependencies
Alexandru Ardelean [Sun, 10 Sep 2023 13:14:00 +0000 (16:14 +0300)]
Merge pull request #22036 from jefferyto/python-zeroconf-0.97.0
python-zeroconf: Update to 0.97.0, update list of dependencies
Alexandru Ardelean [Sun, 10 Sep 2023 13:13:22 +0000 (16:13 +0300)]
Merge pull request #22035 from jefferyto/python-yaml-6.0.1
python-yaml: Update to 6.0.1
Alexandru Ardelean [Sun, 10 Sep 2023 13:12:18 +0000 (16:12 +0300)]
Merge pull request #22034 from jefferyto/python-build-1.0.0
python-build: Update to 1.0.0
Alexandru Ardelean [Sun, 10 Sep 2023 13:11:52 +0000 (16:11 +0300)]
Merge pull request #22041 from jefferyto/python-cryptodomex-3.18.0
python-cryptodomex: Update to 3.18.0, refresh patches
Alexandru Ardelean [Sun, 10 Sep 2023 13:11:40 +0000 (16:11 +0300)]
Merge pull request #22040 from jefferyto/python-cryptodome-3.18.0
python-cryptodome: Update to 3.18.0, refresh patches
Alexandru Ardelean [Sun, 10 Sep 2023 13:11:07 +0000 (16:11 +0300)]
Merge pull request #22042 from jefferyto/python-pyserial-3.5
python-pyserial: Update to 3.5, update list of dependencies
Alexandru Ardelean [Sun, 10 Sep 2023 13:09:03 +0000 (16:09 +0300)]
Merge pull request #22069 from commodo/sudo
sudo: bump to verison 1.9.14p3
Alexandru Ardelean [Sat, 9 Sep 2023 08:30:55 +0000 (11:30 +0300)]
django: bump to version 4.2.5
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
Alexandru Ardelean [Sat, 9 Sep 2023 08:30:07 +0000 (11:30 +0300)]
numpy: bump to version 1.25.2
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
Alexandru Ardelean [Sat, 9 Sep 2023 08:27:37 +0000 (11:27 +0300)]
python-chardet: bump to 5.2.0
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
Alexandru Ardelean [Mon, 4 Sep 2023 07:04:09 +0000 (10:04 +0300)]
sudo: bump to verison 1.9.14p3
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
Eric Luehrsen [Wed, 6 Sep 2023 03:49:41 +0000 (23:49 -0400)]
unbound: update to 1.18.0
Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
Robert Marko [Fri, 8 Sep 2023 21:40:41 +0000 (23:40 +0200)]
dbus: take maintainership of the package
Since it seems that this nobody wants to be the maintainer of dbus,
I can take the responsibility.
I am no dbus expert, but can runtime test it and see if change seems
sane.
Signed-off-by: Robert Marko <robimarko@gmail.com>
Robert Marko [Fri, 8 Sep 2023 21:28:46 +0000 (23:28 +0200)]
dbus: update to 1.14.10 stable
Current stable branch for dbus is 1.14 and that is recommended to be used.
1.13 was a development branch and not meant for production use.
1.14.10 is the latest stable, so lets move to it.
Signed-off-by: Robert Marko <robimarko@gmail.com>
Robert Marko [Fri, 8 Sep 2023 21:04:33 +0000 (23:04 +0200)]
dbus: drop CMake patches
CMake is not being used to build dbus as it does not respect endinaness
under CMake and 1.14 branch.
So, lets drop the patches as they will not apply to future 1.14 update.
Signed-off-by: Robert Marko <robimarko@gmail.com>
Michael Heimpold [Fri, 8 Sep 2023 19:32:51 +0000 (21:32 +0200)]
Merge pull request #22062 from mhei/php8-update-to-8.2.10
php8: update to 8.2.10
Peter van Dijk [Thu, 7 Sep 2023 09:48:04 +0000 (11:48 +0200)]
pdns: update to 4.8.2
Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
Christian Lachner [Thu, 7 Sep 2023 14:06:29 +0000 (16:06 +0200)]
haproxy: update to v2.8.3
- Update haproxy PKG_VERSION and PKG_HASH
- See changes: http://git.haproxy.org/?p=haproxy-2.8.git;a=shortlog
Signed-off-by: Christian Lachner <gladiac@gmail.com>
Jeffery To [Tue, 5 Sep 2023 03:53:41 +0000 (11:53 +0800)]
python3: Update to 3.11.5, refresh patches
Includes fix for CVE-2023-40217 (Bypass TLS handshake on closed
sockets).
This also:
* Remove 027-install-python3-symlink-after-stdlib.patch
This was merged upstream in
https://github.com/python/cpython/pull/104693.
* Remove fix for unnecessary linking with libbsd
(
60bf01cb606344619e002901646171da1e69c0f9)
This was fixed upstream in
https://github.com/python/cpython/pull/105236.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Jeffery To [Mon, 4 Sep 2023 07:09:36 +0000 (15:09 +0800)]
slang2: Remove pcre module
pcre is obsolete and upstream has not yet migrated to pcre2.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Jeffery To [Mon, 4 Sep 2023 07:02:14 +0000 (15:02 +0800)]
slang2: Avoid building dependencies unless necessary
This also hides the module packages in menuconfig unless the libslang2
package is selected.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Van Waholtz [Tue, 5 Sep 2023 15:13:03 +0000 (23:13 +0800)]
syncthing: update to 1.24.0
This package can be built with Go 1.21 and QUIC can be enabled.
Signed-off-by: Van Waholtz <brvphoenix@gmail.com>
Jeffery To [Thu, 7 Sep 2023 08:03:25 +0000 (16:03 +0800)]
Merge pull request #20803 from G-M0N3Y-2503/cache-domains-fix
cache-domains: Fixed config files being outside of jail
Florian Eckert [Wed, 6 Sep 2023 06:08:53 +0000 (08:08 +0200)]
Merge pull request #22055 from pprindeville/modem-manager-fix-no-mbim-install
modemmanager: handle no *.conf files being installed
Philip Prindeville [Wed, 6 Sep 2023 03:38:27 +0000 (21:38 -0600)]
modemmanager: handle no *.conf files being installed
To begin with, there are only a couple of .conf files, and
one of them is for testing, and the other is only installed
when MBIM is enabled, so if you build without MBIM you'll
have a failing install:
install -m0644 /home/pprindeville/work/openwrt/build_dir/target-x86_64_musl/modemmanager-1.20.6/ipkg-install/usr/share/ModemManager/*.conf /home/pprindeville/work/openwrt/build_dir/target-x86_64_musl/modemmanager-1.20.6/.pkgdir/modemmanager/usr/share/ModemManager
install: cannot stat '/home/pprindeville/work/openwrt/build_dir/target-x86_64_musl/modemmanager-1.20.6/ipkg-install/usr/share/ModemManager/*.conf': No such file or directory
make[2]: *** [Makefile:161: /home/pprindeville/work/openwrt/build_dir/target-x86_64_musl/modemmanager-1.20.6/.pkgdir/modemmanager.installed] Error 1
make[2]: Leaving directory '/home/pprindeville/work/openwrt/feeds/packages/net/modemmanager'
So make sure there's anything there to copy over first.
Signed-off-by: Philip Prindeville <pprindeville@netgate.com>
Tianling Shen [Wed, 6 Sep 2023 03:09:05 +0000 (11:09 +0800)]
v2ray-geodata: Update to latest version
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Tianling Shen [Wed, 6 Sep 2023 03:08:39 +0000 (11:08 +0800)]
v2raya: Update to 2.2.4
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
Jan Hák [Mon, 4 Sep 2023 08:44:29 +0000 (10:44 +0200)]
libedit: update to version
20230828-3.1
Signed-off-by: Jan Hák <jan.hak@nic.cz>
Florian Eckert [Tue, 5 Sep 2023 11:50:28 +0000 (13:50 +0200)]
Merge pull request #21992 from osedl/pr/
20230901-modemmanager-fix-permission-denied
modemmanager: Fix Permission Denied error
Florian Eckert [Tue, 5 Sep 2023 11:35:47 +0000 (13:35 +0200)]
Merge pull request #21994 from danielpinto8zz6/fix-desec-update-dns
ddns-scripts: desec.io - update url to https
Gerard Ryan [Wed, 12 Apr 2023 11:53:45 +0000 (21:53 +1000)]
cache-domains: Fixed config files being outside of jail
This fix dnsmasq failing to startup once configured since the
cache-domains config files are not included in the jail that dnsmasq
runs inside.
Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>