aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* libwebsockets: fix uloop supportJohn Crispin2023-01-03
| | | | | | | | | | The commit adding uloop support failed to actually install the .so and add the correct dependencies. [2022/12/26 18:19:38:1835] E: lws_create_context: failed to load evlib_uloop Fixes: 1557ac367a ("libwebsockets: enable built in uloop support") Signed-off-by: John Crispin <john@phrozen.org>
* libnetwork: Update to dcdf8f1 for Docker v20.10.22Gerard Ryan2023-01-03
| | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* containerd: Update to v1.6.13 for Docker v20.10.22Gerard Ryan2023-01-03
| | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* docker: Update to v20.10.22Gerard Ryan2023-01-03
| | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* dockerd: Update to v20.10.22Gerard Ryan2023-01-03
| | | | Signed-off-by: Gerard Ryan <G.M0N3Y.2503@gmail.com>
* bind: start up with -4 if not listening on ipv6 addressesPhilip Prindeville2023-01-02
| | | | Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* python-docker: Update to 6.0.1Javier Marcet2023-01-01
| | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* python-jsonschema: Update to 4.17.3Javier Marcet2023-01-01
| | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* python3-paramiko: update to version 2.12.0Javier Marcet2023-01-01
| | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* python3-texttable: update to version 1.6.7Javier Marcet2023-01-01
| | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* python-websocket-client: update to 1.4.2Javier Marcet2023-01-01
| | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* stubby: bump to 0.4.3Rudy Andram2022-12-31
| | | Signed-off-by: Rudy Andram <rmandrad@gmail.com>
* tree: bump to 2.1.0John Audia2022-12-31
| | | | | | | | Build system: x86_64 Build-tested: bcm2711/RPi4B Run-tested: bcm2711/RPi4B Signed-off-by: John Audia <therealgraysky@proton.me>
* Merge pull request #20182 from stintel/issue_16691Philip Prindeville2022-12-28
|\ | | | | strongswan: fix typo in strongswan-mod-nonce description
| * strongswan: fix typo in strongswan-mod-nonce descriptionStijn Tintel2022-12-28
| | | | | | | | | | Fixes: #16691 Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | bind: update to version 9.18.10Philip Prindeville2022-12-28
| | | | | | | | Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* | Merge pull request #20165 from TDT-AG/pr/20221223-libgpiodMichael Heimpold2022-12-28
|\ \ | |/ |/| libgpiod: add missing kernel build options via KCONFIG
| * libgpiod: add missing kernel build options via KCONFIGFlorian Eckert2022-12-23
| | | | | | | | | | | | | | | | | | This library needs the kernel config option 'CONFIG_GPIO_CDEV_V1=y' to be set. If this is not set, the tool 'gpioinfo' produces the error message 'error creating line iterator'. Add the missing kernel config option to build CDEV with API Version 1 fixes this. Signed-off-by: Florian Eckert <fe@dev.tdt.de>
* | golang: backport an upstream fix for non-retpoline-compatible errorTianling Shen2022-12-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the following build error: ``` Building targets runtime <autogenerated>:1: non-retpoline-compatible: 00200 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/time.go:915) JMP (R15)(R12*8) <autogenerated>:1: non-retpoline-compatible: 00115 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/type.go:614) JMP (AX)(SI*8) <autogenerated>:1: non-retpoline-compatible: 00028 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/time.go:452) JMP (R11)(R10*8) <autogenerated>:1: non-retpoline-compatible: 00021 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/error.go:261) JMP (DX)(CX*8) <autogenerated>:1: non-retpoline-compatible: 00050 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/time.go:691) JMP (CX)(R12*8) <autogenerated>:1: non-retpoline-compatible: 00024 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/debuglog.go:616) JMP (CX)(SI*8) <autogenerated>:1: non-retpoline-compatible: 00079 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/time.go:617) JMP (R9)(R8*8) <autogenerated>:1: non-retpoline-compatible: 00025 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/cgocall.go:453) JMP (R9)(DX*8) <autogenerated>:1: non-retpoline-compatible: 00018 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/type.go:66) JMP (DX)(CX*8) <autogenerated>:1: non-retpoline-compatible: 00020 (/home/username/works/openwrt/staging_dir/hostpkg/lib/go-cross/src/runtime/alg.go:156) JMP (SI)(DX*8) <autogenerated>:1: too many errors ``` Fixes: #20026 Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | v2ray-geodata: Update to latest versionTianling Shen2022-12-27
| | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | v2ray-core: Update to 5.2.0Tianling Shen2022-12-27
| | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | xray-core: Update to 1.7.0Tianling Shen2022-12-27
| | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | Merge pull request #20174 from ysc3839/natmapTianling Shen2022-12-27
|\ \ | | | | | | natmap: fix some issues and update to 20221225
| * | natmap: update to 20221225Richard Yu2022-12-26
| | | | | | | | | | | | Signed-off-by: Richard Yu <yurichard3839@gmail.com>
| * | natmap: fix service not stopped when disabled in luciRichard Yu2022-12-26
| | | | | | | | | | | | | | | | | | | | | luci removes `enable` option when disabled, fix by setting default value to 0. Signed-off-by: Richard Yu <yurichard3839@gmail.com>
| * | natmap: add Package/conffilesRichard Yu2022-12-26
| | | | | | | | | | | | Signed-off-by: Richard Yu <yurichard3839@gmail.com>
* | | Merge pull request #20170 from blocktrron/zyxel-resetDavid Bauer2022-12-26
|\ \ \ | |/ / |/| | zyxel-reset: add package
| * | zyxel-reset: add packageDavid Bauer2022-12-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the zyxel-reset package. This package allows to trigger a factory-reset for ZyXEL devices by sending a magic LLDP package while the device-to-reset is booting. This is useful for remote-resetting a ZyXEL device running stock firmware connected to a switch using OpenWrt. It also allows to reset devices which do not have a reset-button such as the NWA55AXE. Signed-off-by: David Bauer <mail@david-bauer.net>
* | | motion: refresh patchesRobert N2022-12-25
| | | | | | | | | | | | Signed-off-by: Robert N <nrobert13@gmail.com>
* | | motion: update to 4.5.0Robert N2022-12-25
| | | | | | | | | | | | Signed-off-by: Robert N <nrobert13@gmail.com>
* | | rclone: Update to 1.61.1Tianling Shen2022-12-25
| | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | cloudreve: Update to 3.6.2Tianling Shen2022-12-25
| | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | xray-core: Update to 1.6.6-2Tianling Shen2022-12-25
| | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | yq: Update to 4.30.6Tianling Shen2022-12-25
| | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | dnsproxy: Update to 0.46.5Tianling Shen2022-12-25
| | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | dnslookup: Update to 1.8.1Tianling Shen2022-12-25
| | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | cloudflared: Update to 2022.12.1Tianling Shen2022-12-25
|/ / | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | python3-networkx: update to 2.8.8W. Michael Petullo2022-12-23
| | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | libarchive: add missing CONFLICTMichal Vasilek2022-12-23
| | | | | | | | Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
* | libarchive: update to 3.6.2Michal Vasilek2022-12-23
|/ | | | | | | | * fixes CVE-2022-36227 * drop upstreamed patch * removed deprecated AUTORELEASE Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
* krb5: update to 1.20.1W. Michael Petullo2022-12-23
| | | | | | | Besides updating the package to 1.20.1, this commit removed two patches that the new release made unnecessary. Signed-off-by: W. Michael Petullo <mike@flyn.org>
* gnupg2: refresh GCC options in MakefileTony Butler2022-12-22
| | | | | | | | | | | | | | | | | this Makefile still used `CONFIG_GCC_USE_VERSION_*` to select various compilation options, for GCC versions that are antiquated convert to parsing the major from the `CONFIG_GCC_VERSION` which will always exist and can also be used with range logic intent seemed to be: * `-DEXTERN_UNLESS_MAIN_MODULE=static` for "=10" (and newer, probably) * no additional options for "not =10" (or older, probably) GCC 11 or 12 would likely revert to the default (not =10) option, because 10 was the newest at the time, and 11 and 12 are "not 10" Signed-off-by: Tony Butler <spudz76@gmail.com>
* imagemagick: refresh GCC options in MakefileTony Butler2022-12-22
| | | | | | | | | | | | | | | | | | | | | | | this Makefile still used `CONFIG_GCC_USE_VERSION_*` to select various compilation options, for GCC versions that are antiquated convert to parsing the major from the `CONFIG_GCC_VERSION` which will always exist and can also be used with range logic intent seemed to be: * `-flto` for "not =10" (or newer, probably) * no additional options for "=10" (and newer, probably) GCC 11 or 12 would likely revert to the default (not =10) option, because 10 was the newest at the time, and 11 and 12 are "not 10" unsure of what actually works, perhaps `-flto` works in all versions by now (possibly early gcc 10 bug workaround?) GCC 11 will have been using `-flto` anyway by the current logic and I guess it must be working or there would have been changes Signed-off-by: Tony Butler <spudz76@gmail.com>
* graphicsmagick: refresh GCC options in MakefileTony Butler2022-12-22
| | | | | | | | | | | | | | | | | | | | | | | this Makefile still used `CONFIG_GCC_USE_VERSION_*` to select various compilation options, for GCC versions that are antiquated convert to parsing the major from the `CONFIG_GCC_VERSION` which will always exist and can also be used with range logic intent seemed to be: * `-flto` for "not =10" (or newer, probably) * no additional options for "=10" (and newer, probably) GCC 11 or 12 would likely revert to the default (not =10) option, because 10 was the newest at the time, and 11 and 12 are "not 10" unsure of what actually works, perhaps `-flto` works in all versions by now (possibly early gcc 10 bug workaround?) GCC 11 will have been using `-flto` anyway by the current logic and I guess it must be working or there would have been changes Signed-off-by: Tony Butler <spudz76@gmail.com>
* boost: refresh GCC options in MakefileTony Butler2022-12-22
| | | | | | | | | | | | | | | | | | | | | this Makefile still used `CONFIG_GCC_USE_VERSION_*` to select various compilation options, for GCC versions that are antiquated convert to parsing the major from the `CONFIG_GCC_VERSION` which will always exist and can also be used with range logic intent seemed to be: * `-std=gnu++20` for "=10" (and newer, probably) * `-std=gnu++14` for "=5" * `-std=gnu++17` for "not =10 and not =5" GCC 11 or 12 would likely revert to the default (6 through 9) option with those, because 10 was the newest at the time, and 11 and 12 are "not =10 and not =5" probably the GCC 5 support could be removed, not sure about 9 and 10 Signed-off-by: Tony Butler <spudz76@gmail.com>
* gstreamer1: update to 1.20.4W. Michael Petullo2022-12-22
| | | | | | Removed deprecated use of AUTORELEASE, and refreshed patches. Signed-off-by: W. Michael Petullo <mike@flyn.org>
* gst1-plugins-ugly: update to 1.20.4W. Michael Petullo2022-12-22
| | | | | | Removed deprecated use of AUTORELEASE, and refreshed patches. Signed-off-by: W. Michael Petullo <mike@flyn.org>
* gst1-plugins-good: update to 1.20.4W. Michael Petullo2022-12-22
| | | | | | Removed deprecated use of AUTORELEASE, and refreshed patches. Signed-off-by: W. Michael Petullo <mike@flyn.org>
* gst1-plugins-base: update to 1.20.4W. Michael Petullo2022-12-22
| | | | | | Removed deprecated use of AUTORELEASE, and refreshed patches. Signed-off-by: W. Michael Petullo <mike@flyn.org>
* gst1-plugins-bad: update to 1.20.4W. Michael Petullo2022-12-22
| | | | | | Removed deprecated use of AUTORELEASE, and refreshed patches. Signed-off-by: W. Michael Petullo <mike@flyn.org>