aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | | Merge pull request #20446 from stangri/master-simple-adblockStan Grishin2023-02-04
|\ \ \ | |/ / |/| | simple-adblock: update to 1.9.3-7
| * | simple-adblock: update to 1.9.3-7Stan Grishin2023-02-04
|/ / | | | | | | | | | | | | | | * add boot() function which waits for network.interface to come up * switch oisd.nl hosts entry to domains * remove erroneous oisd substitution from config-update file Signed-off-by: Stan Grishin <stangri@melmac.ca>
* | tailscale: update to 1.36.0Oskari Rauta2023-02-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Update tailscale to version 1.36.0 - Patch iptables support Tailscale does not (yet) support nftables. Tailscale allows running with --netfilter=off allowing end-user to create his own firewall rules, but this affects only tailscale cli, not tailscaled daemon, so connection cannot be made without error telling that tailscaled was unable to determine execute iptables for determining it's version. There is a work-around for those who do not want nft-iptables compatibility package; they can create a script to /usr/bin/iptables which responds to --version argument and echos fake version string and on any other arguments or no arguments, just exits. After this procedure and starting tailscale cli with netfilter off- it works. Openwrt has moved on to nftables, so iptables manipulation seems unnecessary. Especially for other reasons, on Openwrt, firewall should be configured on it's own, because firewall rules made by other software, such as tailscale, loose their firewalling rules when firewall restarts. So I patched it to allow "fake" iptables pointing to executable /bin/false and ignoring version request. And I also set cli to default to netfilter off setting. If still end-user wants to use iptables, this patch does not make it impossible; just install iptables, or nft-iptables, and run tailscale with argument --netfilter=on and it works out as it did before, tailscaled daemon still matches with iptables if it is found in $PATH. Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | pdns-recursor: update to 4.8.2Peter van Dijk2023-02-03
| | | | | | | | Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
* | openssh: actually build openssh-server-pam with pam supportSibren Vasse2023-02-03
| | | | | | | | Signed-off-by: Sibren Vasse <github@sibrenvasse.nl>
* | openssh: update to 9.2p1Sibren Vasse2023-02-03
| | | | | | | | Signed-off-by: Sibren Vasse <github@sibrenvasse.nl>
* | crowdsec-firewall-bouncer: update to 0.0.25S. Brusch2023-02-03
| | | | | | | | | | | | | | | | | | | | | | | | | | Update crowdsec-firewall-bouncer to latest upstream release version 0.0.25 Signed-off-by: S. Brusch <ne20002@gmx.ch> Maintainer: Kerma Gérald <gandalf@gk2.net> Run tested: ipq40xx/generic, Fritzbox 4040, Openwrt 22.03.3 Rework: - now based on uci config file - create nftables tables and chains in initd script
* | stunnel: update version to 5.67Florian Eckert2023-02-01
| | | | | | | | Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | Merge pull request #20415 from champtar/mv88e6xxx_dumpEtienne Champetier2023-01-30
|\ \ | | | | | | mv88e6xxx_dump: add new packages to debug switch issues
| * | mv88e6xxx_dump: add new packages to debug switch issuesEtienne Champetier2023-01-30
| | | | | | | | | | | | | | | | | | | | | | | | Reviewed-by: Chris Healy cphealy@gmail.com Reviewed-by: Robert Marko <robimarko@gmail.com> Reviewed-by: Andre Heider <a.heider@gmail.com> Tested-by: Petr Štetiar <ynezz@true.cz> Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* | | Merge pull request #20387 from commodo/python3-venv-supportAlexandru Ardelean2023-01-30
|\ \ \ | | | | | | | | python3: add 'ensurepip' to python3-pip sub-package
| * | | python3: add 'ensurepip' to python3-pip sub-packageAlexandru Ardelean2023-01-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: https://github.com/openwrt/packages/issues/12707 Seems to work. Looking into the 'venv' lib, it seems it's installing pip & setuptools inside a virtual environment. `python3-pip` is already ~6 MB. This adds another ~3 MB. But, this gives users the ability to run Python virtual environments, which is a pretty common feature of Python in production cases (usually web stuff). Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
* | | | Merge pull request #20366 from commodo/python-toml-supportAlexandru Ardelean2023-01-30
|\ \ \ \ | | | | | | | | | | python-build: add support for pyproject.toml files (reboot of #17130)
| * | | | python-build: add support for pyproject.toml filesAlexandru Ardelean2023-01-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A new PEP 517 (https://www.python.org/dev/peps/pep-0517/) has defined that Python packages can be shipped without any `setup.py` file, and that a `pyproject.toml` file is sufficient. A `setup.py` shim layer is suggested as a method for running the build. For these cases, we will add a support in the OpenWrt build-system to provide the default `setup.py` shim layer in case this file does not exist, but there is a `pyproject.toml` file. We also seem to need to tweak the shim layer with the PKG_VERSION, otherwise the detected version is 0.0.0. We will need to see if this will be fixed later in setuptools{-scm}. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | nghttp2: update to 1.51.0An Phuc Nguyen2023-01-29
| | | | | | | | | | | | | | | Signed-off-by: An Phuc Nguyen <phucan.nguyen@daum.net>
* | | | | v4l2loopback: upgrade to v0.12.7Michel Promonet2023-01-29
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Michel Promonet <michel.promonet@free.fr>
* | | | | v4l2tools: upgrade to release 0.2.0Michel Promonet2023-01-29
| |_|/ / |/| | | | | | | | | | | Signed-off-by: Michel Promonet <michel.promonet@free.fr>
* | | | shadowsocks-libev: ss-rules: Add 'auto-merge' flag to avoid conflictsLi Xin2023-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Link: https://github.com/openwrt/packages/pull/19872 Signed-off-by: Li Xin <i@crzidea.com> (squash commits) Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | haproxy: update to v2.6.8Christian Lachner2023-01-28
| | | | | | | | | | | | | | | | | | | | | | | | - Update haproxy download URL and hash Signed-off-by: Christian Lachner <gladiac@gmail.com>
* | | | bind: update to 9.18.11Noah Meyerhans2023-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CVEs: - CVE-2022-3924: Fix serve-stale crash when recursive clients soft quota is reached. - CVE-2022-3736: Handle RRSIG lookups when serve-stale is active. - CVE-2022-3094: An UPDATE message flood could cause named to exhaust all available memory. This flaw was addressed by adding a new "update-quota" statement that controls the number of simultaneous UPDATE messages that can be processed or forwarded. The default is 100. A stats counter has been added to record events when the update quota is exceeded, and the XML and JSON statistics version numbers have been updated. Signed-off-by: Noah Meyerhans <frodo@morgul.net>
* | | | snort3: update to 3.1.53.0John Audia2023-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream bump Build system: x86_64 Build-tested: bcm2711/RPi4B Run-tested: bcm2711/RPi4B Signed-off-by: John Audia <therealgraysky@proton.me>
* | | | nextdns: Update to version 1.39.4Olivier Poitrey2023-01-28
| | | | | | | | | | | | | | | | Signed-off-by: Olivier Poitrey <rs@nextdns.io>
* | | | nextdns: Update to version 1.39.0Olivier Poitrey2023-01-26
| |/ / |/| | | | | | | | Signed-off-by: Olivier Poitrey <rs@nextdns.io>
* | | uvol: add missing quoteDaniel Golle2023-01-25
| | | | | | | | | | | | | | | | | | | | | Add missing quote which broke the autopart script. Fixes: b1edbe349 ("uvol: fix regression in handling fractional megabytes free") Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | snowflake: update to v2.5.1Nick Hainke2023-01-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changes in version v2.4.3 - 2023-01-16 - Fix version number in version.go (Changes for v2.5.1 are missing) Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | delve: update to version 1.20.1Glen Huang2023-01-24
| | | | | | | | | | | | Signed-off-by: Glen Huang <i@glenhuang.com>
* | | ncdu: update to 1.18John Audia2023-01-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream bump Build system: x86_64 Build-tested: bcm2711/RPi4B Run-tested: bcm2711/RPi4B Signed-off-by: John Audia <therealgraysky@proton.me>
* | | clocate: update to latest HEADDavid Bauer2023-01-24
| | | | | | | | | | | | | | | | | | | | | 510cc94 main: remove duplicate import bd84e09 log: add macro Signed-off-by: David Bauer <mail@david-bauer.net>
* | | pdns-recursor: update to 4.8.1Peter van Dijk2023-01-24
| | | | | | | | | | | | Signed-off-by: Peter van Dijk <peter.van.dijk@powerdns.com>
* | | treewide: bump PKG_RELEASE for libiwinfo dependant packagesChristian Marangi2023-01-23
| | | | | | | | | | | | | | | | | | Bump PKG_RELEASE for libiwinfo dependant packages. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* | | Merge pull request #20372 from stangri/master-pbrStan Grishin2023-01-23
|\ \ \ | | | | | | | | pbr: bugfix: fix is_domain()
| * | | pbr: bugfix: fix is_domain()Stan Grishin2023-01-22
| | | | | | | | | | | | | | | | | | | | | | | | * fixes https://github.com/openwrt/packages/issues/20352 Signed-off-by: Stan Grishin <stangri@melmac.ca>
* | | | Merge pull request #20350 from turris-cz/bashJosef Schlehofer2023-01-23
|\ \ \ \ | | | | | | | | | | bash: update to version 5.2.15
| * | | | bash: update to version 5.2.15Josef Schlehofer2023-01-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refreshed patches Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | | uvol: fix regression in handling fractional megabytes freePhilip Prindeville2023-01-23
| |/ / / |/| | | | | | | | | | | | | | | | | | | Also, fix off-by-one issue when computing free size. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* | | | tcpreplay: bump to version 4.4.3Alexandru Ardelean2023-01-22
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | Merge pull request #20280 from oskarirauta/nasmHannu Nyman2023-01-22
|\ \ \ \ | | | | | | | | | | nasm: new package
| * | | | nasm: new packageOskari Rauta2023-01-22
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* | | | | libwebp: bump to version 1.3.0Alexandru Ardelean2023-01-22
| |_|/ / |/| | | | | | | | | | | Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
* | | | xfrpc: update to version 2.1.606Dengfeng Liu2023-01-22
| | | | | | | | | | | | | | | | Signed-off-by: Dengfeng Liu <liudf0716@gmail.com>
* | | | python-requests: bump to version 2.28.2Alexandru Ardelean2023-01-22
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | python-pytz: bump to version 2022.7.1Alexandru Ardelean2023-01-22
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | pillow: bump to version 9.4.0Alexandru Ardelean2023-01-22
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | Merge pull request #20363 from 1715173329/crunHannu Nyman2023-01-22
|\ \ \ \ | | | | | | | | | | crun: add libgcrypt dependency
| * | | | crun: add libgcrypt dependencyTianling Shen2023-01-22
|/ / / / | | | | | | | | | | | | | | | | | | | | Fixes: ad0aa1b2fc64e8 ("crun: update to 1.7.2") Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | | cloudflared: Update to 2023.1.0Tianling Shen2023-01-22
| | | | | | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | | atlas-sw-probe: add more binariesJosef Schlehofer2023-01-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | They were added in these commits [1] [2] and if they are not included, the RIPE Atlas SW Probe does not work correctly. This should also prevent this from happening in the future as it now. We include all files with .sh extension file type. [1] https://github.com/RIPE-NCC/ripe-atlas-software-probe/commit/70ced29fc3217dd8d61e2b78506b6103ded100aa [2] https://github.com/RIPE-NCC/ripe-atlas-software-probe/commit/71a4ff0e68c55464f766ddb9f1dfe21b22e530db Fixes: https://github.com/openwrt/packages/issues/20338 Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | snort3: update to 3.1.52.0John Audia2023-01-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream bump Build system: x86_64 Build-tested: bcm2711/RPi4B Run-tested: bcm2711/RPi4B Signed-off-by: John Audia <therealgraysky@proton.me>
* | | | snort3: update to 3.1.51.0John Audia2023-01-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream bump Build system: x86_64 Build-tested: bcm2711/RPi4B Run-tested: bcm2711/RPi4B Signed-off-by: John Audia <therealgraysky@proton.me>
* | | | Merge pull request #20330 from dhewg/lrzszHannu Nyman2023-01-21
|\ \ \ \ | | | | | | | | | | lrzsz: update to v0.12.21rc and fix a CVE