aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | transmission: Fix env variables passingLeonid Bogdanov2023-06-11
| | | | | | | | | | | | | | It's not possible to configure custom Transmission web home as corresponding env var gets overwritten by the command that sets CA bundle env var. Signed-off-by: Leonid Bogdanov <leonidbogdanov86@gmail.com>
* | netbird: update to 0.21.1Oskari Rauta2023-06-11
| | | | | | | | | | | | Release notes: https://github.com/netbirdio/netbird/releases Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | acme-acmesh: Bump to version 3.0.6Toke Høiland-Jørgensen2023-06-09
| | | | | | | | | | | | Important security fix. Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
* | dockerd: Update to 24.0.2Gerard Ryan2023-06-09
| | | | | | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* | docker: Update to 24.0.2Gerard Ryan2023-06-09
| | | | | | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* | containerd: Update to 1.7.1 for docker 24.0.2Gerard Ryan2023-06-09
| | | | | | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* | runc: Update to 1.1.7 for docker 24.0.2Gerard Ryan2023-06-09
| | | | | | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* | avahi: Import patches for security fixesHirokazu MORIKAWA2023-06-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Imported patches included in debian and other package. * 200-Fix-NULL-pointer-crashes-from-175.patch CVE-2021-3502 A flaw was found in avahi 0.8-5. A reachable assertion is present in avahi_s_host_name_resolver_start function allowing a local attacker to crash the avahi service by requesting hostname resolutions through the avahi socket or dbus methods for invalid hostnames. The highest threat from this vulnerability is to the service availability. * 201-Avoid-infinite-loop-in-avahi-daemon-by-handling-HUP-event.patch CVE-2021-3468 A flaw was found in avahi in versions 0.6 up to 0.8. The event used to signal the termination of the client connection on the avahi Unix socket is not correctly handled in the client_work function, allowing a local attacker to trigger an infinite loop. The highest threat from this vulnerability is to the availability of the avahi service, which becomes unresponsive after this flaw is triggered. * 202-avahi_dns_packet_consume_uint32-fix-potential-undefined-b.patch avahi_dns_packet_consume_uint32 left shifts uint8_t values by 8, 16 and 24 bits to combine them into a 32-bit value. This produces an undefined behavior warning with gcc -fsanitize when fed input values of 128 or 255 however in testing no actual unexpected behavior occurs in practice and the 32-bit uint32_t is always correctly produced as the final value is immediately stored into a uint32_t and the compiler appears to handle this "correctly". Cast the intermediate values to uint32_t to prevent this warning and ensure the intended result is explicit. * 203-Do-not-disable-timeout-cleanup-on-watch-cleanup.patch This was causing timeouts to never be removed from the linked list that tracks them, resulting in both memory and CPU usage to grow larger over time. * 204-Emit-error-if-requested-service-is-not-found.patch It currently just crashes instead of replying with error. Check return value and emit error instead of passing NULL pointer to reply. * 205-conf-file-line-lengths.patch Allow avahi-daemon.conf file to have lines longer than 256 characters (new limit 1024). Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | openvpn: fix ipchange hotplug eventIvan Pavlov2023-06-09
| | | | | | | | | | | | | | | | | | | | In f8a8b71e26b9bdbf86fbb7d4d1482637af7f3ba4 openvpn introduced new hotplug events. For server config, ipchange hotplug event produces an error. So, make ipchange hotplug event for client only Fixes https://github.com/openwrt/packages/issues/21200 Signed-off-by: Ivan Pavlov <AuthorReflex@gmail.com>
* | crowdsec: new upstream release version 1.5.2S. Brusch2023-06-08
| | | | | | | | | | | | | | | | | | | | | | Update crowdsec to latest upstream release version 1.5.2 Signed-off-by: S. Brusch <ne20002@gmx.ch> Maintainer: Kerma Gérald <gandalf@gk2.net> Run tested: ipq40xx/generic, Fritzbox 4040, Openwrt 22.03.5 Description: update to latest version of upstream
* | python3-asgiref: Update to 3.7.2, rename source packageJeffery To2023-06-07
| | | | | | | | | | | | | | | | | | This renames the source package to python-asgiref to match other Python packages. This also updates the package title and URL. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | Merge pull request #21265 from mhei/php8-fix-linking-on-riscv64Michael Heimpold2023-06-07
|\ \ | | | | | | php8: fix linking on riscv64 platform
| * | php8: fix linking on riscv64 platformMichael Heimpold2023-06-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The buildbots failed for the mentioned platform with the following error: (I shortened the pathnames and broke long lines a little bit for readability) .../lib/gcc/riscv64-openwrt-linux-musl/12.3.0/../../../../ riscv64-openwrt-linux-musl/bin/ld: Zend/zend_execute_API.o: in function `.L533': zend_execute_API.c:(.text+0x1b1c): undefined reference to `__atomic_exchange_1' .../riscv64-openwrt-linux-musl/bin/ld: Zend/zend_atomic.o: in function `zend_atomic_bool_exchange': zend_atomic.c:(.text+0xc): undefined reference to `__atomic_exchange_1' collect2: error: ld returned 1 exit status make[4]: *** [Makefile:350: sapi/cli/php] Error 1 Inspired by the blog post[1], linking to libatomic explicitly seems to do the trick. [1] A RISC-V gcc pitfall revealed by a glibc update https://blog.jiejiss.com/A-RISC-V-gcc-pitfall-revealed-by-a-glibc-update Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | Merge pull request #21298 from 1715173329/rustTianling Shen2023-06-07
|\ \ \ | | | | | | | | rust: enable riscv64 support
| * | | rust: enable riscv64 supportTianling Shen2023-06-07
| | | | | | | | | | | | | | | | | | | | | | | | rust natively supports riscv64 so let's enable it. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | | knot: update to version 3.2.7Jan Hák2023-06-07
| | | | | | | | | | | | | | | | Signed-off-by: Jan Hák <jan.hak@nic.cz>
* | | | python3-django-etesync-journal: Remove packageJeffery To2023-06-07
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package was originally added[1] as it was a dependency of etesync-server 0.3.0. When etesync-server was renamed to etebase and upgraded to 0.6.1[2], this dependency was removed. No other package in the packages feed depends on this package. Upstream has also archived the git repo[3] and stated that the repo/package is deprecated. It does not appear that any newer version of etebase uses this package. This removes the python3-django-etesync-journal package; it will be submitted to the abandoned packages repo. [1]: https://github.com/openwrt/packages/pull/10469 [2]: https://github.com/openwrt/packages/pull/14063 [3]: https://github.com/etesync/journal-manager Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | rust: bump libc to 0.2.146Tianling Shen2023-06-07
| | | | | | | | | | | | | | | | | | Fixes build with musl 1.2.4. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | passlib: Update to 1.7.4, rename source packageJeffery To2023-06-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | This renames the source package from passlib to python-passlib to match other Python packages. This also updates the package URL and list of dependencies. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | pdns: update to 4.8.0Peter van Dijk2023-06-06
| | | | | | | | | | | | Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
* | | gawk: disable mpfr detectionTianling Shen2023-06-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Disable mpfr detection to fix a build error due to (unncessary) missing dependency: ``` Package gawk is missing dependencies for the following libraries: libgmp.so.10 libmpfr.so.6 ``` Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | tree: bump to 2.1.1John Audia2023-06-06
| | | | | | | | | | | | | | | | | | | | | | | | Build system: x86_64 Build-tested: bcm2711/RPi4B Run-tested: bcm2711/RPi4B Signed-off-by: John Audia <therealgraysky@proton.me>
* | | adguardhome: bump to 0.107.29Dobroslaw Kijowski2023-06-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Full changelog available at: * https://github.com/AdguardTeam/AdGuardHome/releases/tag/v0.107.26 * https://github.com/AdguardTeam/AdGuardHome/releases/tag/v0.107.27 * https://github.com/AdguardTeam/AdGuardHome/releases/tag/v0.107.28 * https://github.com/AdguardTeam/AdGuardHome/releases/tag/v0.107.29 Signed-off-by: Dobroslaw Kijowski <dobo90@gmail.com>
* | | Merge pull request #21275 from jefferyto/python-typing-extensions-4.6.3Tianling Shen2023-06-06
|\ \ \ | | | | | | | | python-typing-extensions: Update to 4.6.3
| * | | python-typing-extensions: Update to 4.6.3Jeffery To2023-06-05
| | | | | | | | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | Merge pull request #21274 from jefferyto/python-poetry-core-1.6.1Tianling Shen2023-06-06
|\ \ \ \ | | | | | | | | | | python-poetry-core: Update to 1.6.1
| * | | | python-poetry-core: Update to 1.6.1Jeffery To2023-06-05
| |/ / / | | | | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | Merge pull request #21273 from jefferyto/python-hatchling-1.17.1Tianling Shen2023-06-06
|\ \ \ \ | |_|_|/ |/| | | python-hatchling: Update to 1.17.1
| * | | python-hatchling: Update to 1.17.1Jeffery To2023-06-05
| |/ / | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | banip: release 0.8.7-1Dirk Brenken2023-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Optionally auto-add entire subnets to the blocklist Sets based on an additional RDAP request with the monitored suspicious IP, set 'ban_autoblocksubnet' accordingly (disabled by default). For more information regarding RDAP see https://www.ripe.net/manage-ips-and-asns/db/registration-data-access-protocol-rdap for reference. * small fixes & cosmetics * update readme Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | snort3: update to 3.1.63.0John Audia2023-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream bump Build system: x86_64 Build-tested: bcm2711/RPi4B Run-tested: bcm2711/RPi4B Signed-off-by: John Audia <therealgraysky@proton.me>
* | | python3-bottle: Update to 0.12.25Tianling Shen2023-06-05
| | | | | | | | | | | | | | | | | | Fix build with Python 3.11 Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | python-yarl: Update to 1.9.2Tianling Shen2023-06-05
| | | | | | | | | | | | | | | | | | Fix build with Python 3.11. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | Merge pull request #21268 from 1715173329/packrJeffery To2023-06-05
|\ \ \ | | | | | | | | packr: remove package
| * | | packr: remove packageTianling Shen2023-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In Go 1.18+ embedded files is natively supported, so this package is useless now. It has been archived on Jun 2022 and failed to build on the riscv64 target. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | | rust: update to 1.70.0Luca Barbato2023-06-05
| |/ / |/| | | | | | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* | | Merge pull request #21251 from jefferyto/zabbix-pkg-source-urlEtienne Champetier2023-06-04
|\ \ \ | |/ / |/| | zabbix: Add "oldstable" source URL
| * | zabbix: Add "oldstable" source URLJeffery To2023-06-02
| | | | | | | | | | | | | | | | | | | | | Zabbix moved the 6.2 directory from "stable" into "oldstable". This adds the "oldstable" URL to PKG_SOURCE_URL. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | speedtestcpp: add new packageOskari Rauta2023-06-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | speedtestcpp is a fork of Taganaka's speedtest, rewritten. It has some improvements such as - interactive result show - use server recommended profiles, which makes it faster (can be disabled) - and more.. It also provides it's functions in shared and static libraries and offers development headers for integrating speedtest to features to another projects. This commit replaces speedtestpp since this fork has all the same features + more. Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | | xfrpc: update to 2.6.633Dengfeng Liu2023-06-04
| | | | | | | | | | | | | | | | | | support socks5 Signed-off-by: Dengfeng Liu <liudf0716@gmail.com>
* | | Merge pull request #21267 from jefferyto/golang-enable-riscv64Tianling Shen2023-06-04
|\ \ \ | |_|/ |/| | golang: Enable riscv64 for Go compiler and packages
| * | golang: Enable riscv64 for Go compiler and packagesJeffery To2023-06-04
|/ / | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | Merge pull request #21256 from jefferyto/micropython-1.20.0Tianling Shen2023-06-03
|\ \ | | | | | | micropython: Update to 1.20.0, update/add related packages
| * | micropython-mpremote: Add new packageJeffery To2023-06-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From the README: This CLI tool provides an integrated set of utilities to remotely interact with and automate a MicroPython device over a serial connection. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
| * | python-hatch-requirements-txt: Add new host-only packageJeffery To2023-06-02
| | | | | | | | | | | | | | | | | | | | | | | | From the README: Hatchling plugin to read project dependencies from requirements.txt Signed-off-by: Jeffery To <jeffery.to@gmail.com>
| * | micropython-lib: Update to master, split target packageJeffery To2023-06-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The package has been reworked to install the same files that are available to be downloaded/installed by mip, the package manager new to MicroPython 1.20.0. This also splits the original target package into four: * micropython-lib * Includes packages common to all MicroPython ports (python-stdlib, python-ecosys, micropython) * Contains mpy bytecode files * micropython-lib-src * Includes packages common to all MicroPython ports (python-stdlib, python-ecosys, micropython) * Contains py source files * micropython-lib-unix * Includes packages specific to the MicroPython Unix port (unix-ffi) * Contains mpy bytecode files * Installs a specific launcher (micropython-unix) that adds the Unix package directory into MicroPython's library path * micropython-lib-unix-src * Includes packages specific to the MicroPython Unix port (unix-ffi) * Contains py source files This also updates the package license, title, and description. Patches: * 001-build-unix-ffi.patch This enables the repo build script to also build the Unix-specific packages. Not sure if upstream is open to accepting this since the Unix-specific packages don't fit well into the existing package distribution mechanism. * 002-add-unix-ffi-os-path.patch and 003-add-unix-ffi-uu.patch These fix instances where the unix-ffi version of the os package is overridden by the python-stdlib version. These have been submitted to upstream: https://github.com/micropython/micropython-lib/pull/672 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
| * | micropython: Update to 1.20.0, refresh/rework patchesJeffery To2023-06-02
| |/ | | | | | | | | | | | | | | | | | | Patches 000-Makefile-no-errors.patch and 020-mpy-cross-fix-flags.patch are no longer necessary. This also adds a Build/InstallDev recipe to install files necessary for micropython-lib. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | CI: Add build test for riscv64_riscv64Jeffery To2023-06-02
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | CI: Sort build architectures in alphabetical orderJeffery To2023-06-02
|/ | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* dnsproxy: Update to 0.49.2Tianling Shen2023-06-02
| | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>