aboutsummaryrefslogtreecommitdiff
path: root/lang
Commit message (Collapse)AuthorAge
...
* python-twisted: Update to 22.1.0, refresh patchesJeffery To2022-02-15
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* lua-cs-bouncer: initial packageKerma Gérald2022-02-14
| | | | | | | | | | Lua Crowdsec Bouncer module Lua module to allow ip (or not) from CrowdSec API. https://github.com/crowdsecurity/lua-cs-bouncer required for crowdsec-nginx-bouncer Signed-off-by: Kerma Gérald <gandalf@gk2.net>
* cqueues: add cqueues(rel-20200726) to feedsSiger Yang2022-02-14
| | | | Signed-off-by: Siger Yang <siger.yang@outlook.com>
* golang: Update to 1.17.7, refresh patchJeffery To2022-02-14
| | | | | | | | | | | | This includes fixes for: * CVE-2022-23772: math/big: Rat.SetString may consume large amount of RAM and crash * CVE-2022-23806: crypto/elliptic: IsOnCurve returns true for invalid field elements Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python: django: bump to 4.0.1Alexandru Ardelean2022-02-10
| | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python: pillow: bump to 9.0.1Alexandru Ardelean2022-02-10
| | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* ruby: fix build on macosSergey V. Lobanov2022-02-06
| | | | | | | | | | | 1. ruby/host build fails on macos due to Apple ld generates warning if a folder from LDFLAGS is not exist. configure script catches this warning and fails. This patch disables ld warnings for macos 2. ruby build fails on macos due /bin/true is not exist on macos. This patch replaces /bin/true with true in OpenWrt Makefile Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* perl-cgi: Update to 4.54Philip Prindeville2022-02-06
| | | | Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* Merge pull request #17743 from turris-cz/dnspython-bumpJosef Schlehofer2022-02-06
|\ | | | | python-dns: update to version 2.2.0
| * python-dns: update to version 2.2.0Josef Schlehofer2022-01-31
| | | | | | | | | | | | | | | | | | - Removed PYPI_SOURCE_EXT as this release provides tarball with .tar.gz extension, which is default. - Changelog: https://dnspython.readthedocs.io/en/stable/whatsnew.html Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | ruby: update to 3.0.3Michal Vasilek2022-02-06
| | | | | | | | | | | | * fixes CVE-2021-41817, CVE-2021-41816 and CVE-2021-41819 Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
* | python-sentry-sdk: update to 1.5.4Šimon Bořek2022-02-04
| | | | | | | | | | | | changelog: https://github.com/getsentry/sentry-python/blob/f6d3adcb3d7017a55c1b06e5253d08dc5121db07/CHANGELOG.md#154 Signed-off-by: Šimon Bořek <borek@autobakterie.cz>
* | lyaml: fix build on macosSergey V. Lobanov2022-01-29
| | | | | | | | | | | | | | | | | | | | lyaml build script detects Darwin using `uname -s` and changes build logic so lyaml package can not be built on macos. This patch uses fakeuname host tool to redefine `uname -s` output and fix build on macos. Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | tcl: fix build on macosSergey V. Lobanov2022-01-29
|/ | | | | | | | | | configure script detects Darwin and uses flags incompatible with Linux target build. This patch uses fakeuname tool if host OS is MacOS to avoid Darwin detection on target build. Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* Merge pull request #17676 from mhei/php8-updateMichael Heimpold2022-01-25
|\ | | | | php8: update to 8.1.2
| * php8: update to 8.1.2Michael Heimpold2022-01-22
| | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | node: January 10th 2022 Security ReleasesHirokazu MORIKAWA2022-01-24
| | | | | | | | | | | | | | | | | | | | | | | | Update to v14.18.3 January 10th 2022 Security Releases: Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531) Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532) Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533) Prototype pollution via console.table properties (Low)(CVE-2022-21824) Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | micropython: Update to 1.18, refresh patchesJeffery To2022-01-24
|/ | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* perl-device-serialport: fix build on macosSergey V. Lobanov2022-01-18
| | | | | | | | | | | | ./configure script detects macos specific system headers (IOKit/serial/ioss.h and sys/ttycom.h) that are not available during compile time. There is no way to pass ac_cv_* vars to ./configure script due to perl wrappers To fix this issue, fake(empty) headers provided during compile time if build host is MacOS Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* python-curl: fix build on macosSergey V. Lobanov2022-01-18
| | | | | | | | | setup.py detects macos (darwin) and adds -flat_namespace flag. This flag is not compatible with GCC that is used to compile target. This patch patch disables darwin detection Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* Merge pull request #17624 from jefferyto/python-3.10.2Josef Schlehofer2022-01-18
|\ | | | | python3: Update to 3.10.2, refresh patches
| * python3: Update to 3.10.2, refresh patchesJeffery To2022-01-17
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | luaossl: fix build on macosSergey V. Lobanov2022-01-17
|/ | | | | | | | luaossl detects OS and changes compilation flags depends on OS. If Darwin is detected then it adds GCC non-compatible flags. OpenWrt is always Linux so build OS detection is disabled Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* luasql: fix build on macosSergey V. Lobanov2022-01-11
| | | | | | | | | | | luasql ./config scripts checks `uname -s` output and changes LIB_OPTION from '-static' to macos specific if detected OS is Darwin. These flags are not compatible with GCC OpenWrt is always Linux, this patch removes Darwin specific stuff from compilation flags Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* micropython-lib: Update to latest masterJeffery To2022-01-11
| | | | | | | | | The last tagged release (v1.9.3) was in 2017. This updates the package to the most recent commit of the master branch. This also sets myself at the maintainer. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* micropython: Update to 1.17, reorganize packageJeffery To2022-01-11
| | | | | | | | | | | | | | | | | | | | Previous versions used a bundled version of the axTLS library. The MicroPython project maintains their own fork[1], as development of the library appears to have stopped (the last release was version 2.1.5 in 2019[2]). This replaces the use of axTLS with two variants, one using mbedTLS and one with no TLS support (and no upip, as it uses the ussl module). The external mbedTLS patch (040-extmod-use-external-mbedtls.patch) comes from Debian[3]. This also sets myself as the maintainer. [1]: https://github.com/micropython/axtls [2]: https://sourceforge.net/projects/axtls/files/ [3]: https://salsa.debian.org/yangfl-guest/micropython/-/blob/master/debian/patches/0006-extmod-Use-system-mbedtls.patch Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* golang: Update to 1.17.6Jeffery To2022-01-11
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3-paramiko: update to version 2.9.2Javier Marcet2022-01-09
| | | | | | | | | | | | | | - [Bug]: Enhanced log output when connecting to servers that do not support server-sig-algs extensions, making the new-as-of-2.9 defaulting to SHA2 pubkey algorithms more obvious when it kicks in. - [Bug]: Connecting to servers which support server-sig-algs but which have no overlap between that list and what a Paramiko client supports, now raise an exception instead of defaulting to rsa-sha2-512 (since the use of server-sig-algs allows us to know what the server supports). Signed-off-by: Javier Marcet <javier@marcet.info>
* python-pynacl: update to v1.5.0Javier Marcet2022-01-09
| | | | Signed-off-by: Javier Marcet <javier@marcet.info>
* erlang: update to version 24.2Sergey V. Lobanov2022-01-09
| | | | | | | | | | | | 1. updated to 24.2 (RN: https://github.com/erlang/otp/releases/tag/OTP-24.2) 2. added libstdcpp dependency 3. erlang-hipe was removed in upstream (ref https://github.com/erlang/otp/commit/fccb8482efc47bf2e48911564df502f087cce5ed) everything related to erlang-hipe was removed from Makefile 4. updated and refreshed patches 5. host-compile ssl library forced to OpenWrt LibreSSL to avoid using system library Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* django: bump to version 4.0.1Alexandru Ardelean2022-01-09
| | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* lua-curl-v3: fix build on macosSergey V. Lobanov2022-01-08
| | | | | | | | | lua-curl-v3 detects OS and changes compilation flags depends on OS. If Darwin is detected then it adds GCC non-compatible flags. OpenWrt is always Linux, OS detection is disabled via UNAME=Linux as a part of MAKE_FLAGS Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* luajit: fix build on macos (ldconfig issue)Sergey V. Lobanov2022-01-08
| | | | | | | fix ldconfig build issue. This patch is a backport from upstream: https://github.com/LuaJIT/LuaJIT/commit/18c9cf7d3788a8f7408df45df92fc4ae3bcc0d80 Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* Merge pull request #17492 from jefferyto/python-attrs-21.4.0Josef Schlehofer2022-01-07
|\ | | | | python-attrs: Update to 21.4.0
| * python-attrs: Update to 21.4.0Jeffery To2022-01-04
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | Merge pull request #17429 from erdoukki/2to3Jeffery To2022-01-07
|\ \ | | | | | | 2to3: add package host tool
| * | 2to3: add package host toolKerma Gérald2022-01-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2to3 is a Python program that reads Python 2.x source code and applies a series of fixers to transform it into valid Python 3.x code. The standard library contains a rich set of fixers that will handle almost all code. 2to3 supporting library lib2to3 is, however, a flexible and generic library, so it is possible to write your own fixers for 2to3. lib2to3 could also be adapted to custom applications in which Python code needs to be edited automatically. This tool is necessary for fail2ban package because of issue https://github.com/openwrt/packages/issues/17311 https://github.com/openwrt/packages/pull/17341 Simple 2to3.py script from Debian, thanks to Matthias Klose <doko@ubuntu.com> From: https://salsa.debian.org/cpython-team/python3-defaults Co-authored-by: Jeffery To <jeffery.to@gmail.com> Signed-off-by: Kerma Gérald <gandalf@gk2.net>
* | | Merge pull request #17481 from jefferyto/python-3.10.1Josef Schlehofer2022-01-06
|\ \ \ | |_|/ |/| | python3: Update to 3.10.1, refresh/remove patches
| * | python3: Update to 3.10.1, refresh/remove patchesJeffery To2022-01-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed patches: * 027-bpo-43158-Use-configure-values-for-building-_uuid-ex.patch Already merged. * 029-disable-deprecation-warning.patch Packages should be patched/fixed to remove the use of distutils instead of disabling this warning. Also: * Updates PKG_LICENSE to use the correct SPDX license identifier * Fixes build for mipsel_24kc_24kf Fixes https://github.com/openwrt/packages/issues/17217. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | Merge pull request #17435 from pprindeville/perl-cgi-update-4.53Philip Prindeville2022-01-03
|\ \ \ | | | | | | | | perl-cgi: update to 4.53
| * | | perl-cgi: update to 4.53Philip Prindeville2022-01-02
| |/ / | | | | | | | | | Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* | | Merge pull request #17434 from pprindeville/perl-text-csv_xs-update-1.47Philip Prindeville2022-01-03
|\ \ \ | | | | | | | | perl-text-csv_xs: update to 1.47
| * | | perl-text-csv_xs: update to 1.47Philip Prindeville2022-01-02
| |/ / | | | | | | | | | Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
* | | Merge pull request #17460 from BKPepe/stemJeffery To2022-01-04
|\ \ \ | | | | | | | | python-stem: backport patch to fix Python 3.10
| * | | python-stem: backport patch to fix Python 3.10Josef Schlehofer2022-01-03
| | | | | | | | | | | | | | | | Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | Merge pull request #17442 from commodo/django-restframeworkJeffery To2022-01-04
|\ \ \ \ | | | | | | | | | | django-restframework: bump to version 3.13.1
| * | | | django-restframework: bump to version 3.13.1Alexandru Ardelean2021-12-27
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | | Merge pull request #17466 from BKPepe/markdownJeffery To2022-01-03
|\ \ \ \ \ | | | | | | | | | | | | python-markdown: update to version 3.3.6
| * | | | | python-markdown: update to version 3.3.6Josef Schlehofer2021-12-31
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | - Update copyright Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | | Merge pull request #17463 from BKPepe/voluptuous-serializeJeffery To2022-01-03
|\ \ \ \ \ | | | | | | | | | | | | python-voluptuous-serialize: update to version 2.5.0