aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* python-typing-extensions: Update to 4.6.2Jeffery To2023-05-29
| | | | | | | This also updates the SPDX license identifier, title, description and URL for the package. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-trove-classifiers: Update to 2023.5.24Jeffery To2023-05-29
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-gmpy2: Update to 2.1.5Jeffery To2023-05-29
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* libmpc: Add packageJeffery To2023-05-29
| | | | | | | | | | | From the documentation: GNU MPC is a portable library written in C for arbitrary precision arithmetic on complex numbers providing correct rounding. It implements a multiprecision equivalent of the C99 standard. It builds upon the GNU MP and the GNU MPFR libraries. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* mpfr: Add packageJeffery To2023-05-29
| | | | | | | | | | | From the documentation: MPFR is a portable library written in C for arbitrary precision arithmetic on floating-point numbers. It is based on the GNU MP library. It aims to provide a class of floating-point numbers with precise semantics. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-cython: Update to 0.29.35Jeffery To2023-05-29
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-hatch-fancy-pypi-readme: Update to 23.1.0Jeffery To2023-05-29
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* bcrypt: Update to 3.2.2, rename source packageJeffery To2023-05-29
| | | | | | | | | | | This is the last released version before bcrypt's Rust rewrite; this package can be further updated after the OpenWrt Rust toolchain has stablized. This also renames the source package from bcrypt to python-bcrypt to match other Python packages, and updates the list of dependencies. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* freeradius3: Update to 3.0.26Jianhui Zhao2023-05-29
| | | | Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
* ragel: new package to build vectorscanJohn Audia2023-05-28
| | | | | | | | This is a new package for ragel which is a dependency for another new package vectorscan Co-authored-by: Josef Schlehofer <pepe.schlehofer@gmail.com> Signed-off-by: John Audia <therealgraysky@proton.me>
* luaposix: update to 36.1Maxim Storchak2023-05-28
| | | | Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
* pyodbc: Update to 4.0.39Tianling Shen2023-05-28
| | | | | | | * Fixed build with Python 3.11 * Removed unnecessary build depends Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* python-packages: Replace --global-option with --build-optionJeffery To2023-05-28
| | | | | | | | | | setuptools 64.0.0 deprecated the use of --global-option to pass build parameters[1]. This replaces the use of --global-option with --build-option. [1]: https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v6400 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* apparmor: gcc 13 compatibility fixOskari Rauta2023-05-28
| | | | | | | | | | | | | | when built with gcc 13, fixes following error: capability.h:46:6: error: variable or field '__debug_capabilities' declared void 46 | void __debug_capabilities(uint64_t capset, const char *name); | ^~~~~~~~~~~~~~~~~~~~ capability.h:46:27: error: 'uint64_t' was not declared in this scope patch is back ported from upstream patch at https://gitlab.com/apparmor/apparmor/-/commit/64a64be7ffb5a84f27daa9f37ae8ad92800943d3.patch Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
* lighttpd: update to lighttpd 1.4.71 release hashGlenn Strauss2023-05-28
| | | | | | remove patches included upstream Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
* Merge pull request #21194 from 1715173329/pgrAlexandru Ardelean2023-05-27
|\ | | | | python-greenlet: Update to 2.0.2
| * python-greenlet: Update to 2.0.2Tianling Shen2023-05-27
| | | | | | | | | | | | Fix build with Python 3.11. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | Merge pull request #21190 from jefferyto/python-split-packagesAlexandru Ardelean2023-05-27
|\ \ | | | | | | python3: Split venv into separate package, pip and setuptools into separate source packages
| * | python3: Split setuptools into separate source packageJeffery To2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Packaging setuptools from a separate source package allows it to stay updated with upstream. Host setuptools will remain installed as part of python3. Host setuptools is used in a much more controlled way and so is less critical for it to track upstream. setuptools was in a separate source package that was removed in a53d0c5a403d1669e2cf6c59c2be6a9d3ed633a0; this work is not based on that earlier package. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
| * | python3: Split pip into separate source packageJeffery To2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Packaging pip from a separate source package allows it to stay updated with upstream. Host pip will remain installed as part of python3. Host pip is used in a much more controlled way and so is less critical for it to track upstream. This also removes the python-pip-conf package and installs the pip.conf file as part of python3-pip. The patch 003-disable-pip-version-check.patch is originally from Debian: https://salsa.debian.org/python-team/packages/python-pip/-/blob/bb079efb8c6dd2c284eee94cf90e61bce19a6f73/debian/patches/disable-pip-version-check.patch pip was in a separate source package that was removed in a53d0c5a403d1669e2cf6c59c2be6a9d3ed633a0; this work is not based on that earlier package. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
| * | python3: Split venv module from python3-light into separate packageJeffery To2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | This adds a new subpackage for the venv module. This also moves the ensurepip module from python3-pip into python3-venv, as ensurepip is not necessary for pip but often used for venv. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | Merge pull request #21188 from jefferyto/python-tomli-remove-packageTianling Shen2023-05-27
|\ \ \ | | | | | | | | python-tomli: Remove package
| * | | python-tomli: Remove packageJeffery To2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python added tomli to its standard library in 3.11. Now that Python in the packages feed has been updated to 3.11, the separate tomli package is no longer necessary. This removes python-tomli and updates all dependant packages, removing python-tomli from their lists of dependencies. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | Merge pull request #21184 from commodo/numpyAlexandru Ardelean2023-05-27
|\ \ \ \ | |_|_|/ |/| | | numpy: bump version to 1.24.3
| * | | numpy: bump version to 1.24.3Alexandru Ardelean2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | Need to also fix build for GCC 13 + musl. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | tailscale: update to 1.42.0Zephyr Lykos2023-05-27
| | | | | | | | | | | | | | | | Signed-off-by: Zephyr Lykos <git@mochaa.ws>
* | | | Merge pull request #21177 from stangri/master-https-dns-proxyStan Grishin2023-05-26
|\ \ \ \ | | | | | | | | | | https-dns-proxy: update to 2023-05-25-1
| * | | | https-dns-proxy: update to 2023-05-25-1Stan Grishin2023-05-26
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update to a new upstream commit, fixes #19366 * update patches/010-cmakelists-remove-cflags.patch as upstream file was update * remove patches/020-cmakelists-add-version.patch as version is now set elsewhere * add patches/020-src-options.c-add-version.patch to set the version information * adjust PROCD START time to 95 Signed-off-by: Stan Grishin <stangri@melmac.ca>
* | | | CI: add concurrency rules to skip redundant buildChristian Marangi2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add concurrency rules to skip redundant build to skip extra build test on force push on pull request. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* | | | nginx: refactor MakefileGlen Huang2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make modules follow a naming convention, which enables: 1. Inline ADDITIONAL_MODULES into CONFIGURE_ARGS 2. Consolidate some parts of Quilt and Download for each module into BuildModule Signed-off-by: Glen Huang <me@glenhuang.com> [ fix conflict error ] Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* | | | nginx: make nginx-mod-luci depend on nginx-sslGlen Huang2023-05-26
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | Change dependency from nginx virtual migration package to nginx-ssl for nginx-mod-luci nginx module package. Signed-off-by: Glen Huang <me@glenhuang.com> [ add commit description ] Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* | | Merge pull request #21186 from commodo/mstpd-dropAlexandru Ardelean2023-05-26
|\ \ \ | |_|/ |/| | mstpd: drop package (replaced by ustp in core)
| * | mstpd: drop package (replaced by ustp in core)Alexandru Ardelean2023-05-26
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | OpenWrt core has a package called ustp which is an OpenWrt adaptation (from mstpd) for OpenWrt (using libubox, libubus, etc). No sense in keeping mstpd anymore. We can just update ustp. Also, if mstpd has any updates, they can be ported over to ustp too. Abandoned PR: https://github.com/openwrt/packages-abandoned/pull/30 Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
* | Merge pull request #21149 from stangri/master-curlStan Grishin2023-05-26
|\ \ | |/ |/| curl: update to 8.1.1
| * curl: update to 8.1.1Stan Grishin2023-05-23
| | | | | | | | | | | | * https://curl.se/changes.html#8_1_1 Signed-off-by: Stan Grishin <stangri@melmac.ca>
* | Merge pull request #21167 from ↵Alexandru Ardelean2023-05-26
|\ \ | | | | | | | | | | | | jefferyto/python-packages-do-not-set-pyvenv-launcher python-packages: Remove __PYVENV_LAUNCHER__ environment variable
| * | python-packages: Remove __PYVENV_LAUNCHER__ environment variableJeffery To2023-05-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Setting __PYVENV_LAUNCHER__ for Python package builds was added in a91a992abb1fe9b7c4e4e5d11532dbf18c5b213d, but neither the commit message nor the pull request[1] explain its purpose in detail. My guess is this was done to set the shebang for installed Python scripts. We now have a Makefile recipe to set the shebang, so it would be unnecessary to set this variable for this purpose. It appears that Python 3.11 has changed the handling of this (internal) environment variable, and setting it appears to be causing build errors for all Python packages. This removes setting __PYVENV_LAUNCHER__ for Python package builds. [1]: https://github.com/openwrt/packages/pull/525 Fixes: https://github.com/openwrt/packages/issues/21162 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | squeezelite: restructure package variantsRobert Högberg2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The squeezelite packages were lacking some features/codecs (ssl, opus, wma, dsd and resampling) and required manual compilation to enable these features/codecs. Now there are 3 packages available that hopefully should satisfy most users: * full This package enables all features and codecs. * dynamic This package only enables PCM/AIFF and MP3 codecs and all other features/codecs can be added by manually installing OpenWrt packages. * custom This package allows for customizing squeezelite. Signed-off-by: Robert Högberg <robert.hogberg@gmail.com>
* | | openvpn-easy-rsa: update to 3.1.3Luiz Angelo Daros de Luca2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Version 3.0.9 of EasyRSA introduces OpenSSL 3 (3.0.3) support. For other changes, see: - https://github.com/OpenVPN/easy-rsa/releases/tag/v3.0.9 - https://github.com/OpenVPN/easy-rsa/releases/tag/v3.1.0 - https://github.com/OpenVPN/easy-rsa/releases/tag/v3.1.1 - https://github.com/OpenVPN/easy-rsa/releases/tag/v3.1.2 - https://github.com/OpenVPN/easy-rsa/releases/tag/v3.1.3 Closes #21142 Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* | | uwsgi: Update to 2.0.21, refresh patchesJeffery To2023-05-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This version includes support for Python 3.11. This also: * Updates Build/Compile to only build selected subpackages. * Removes the submenu in menuconfig; there are too few subpackages to justify the extra complexity. Fixes: https://github.com/openwrt/packages/issues/21163 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | gst1-libav: update to 1.22.3W. Michael Petullo2023-05-26
| | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | gst1-plugins-ugly: update to 1.22.3W. Michael Petullo2023-05-26
| | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | gst1-plugins-bad: update to 1.22.3W. Michael Petullo2023-05-26
| | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | gst1-plugins-good: update to 1.22.3W. Michael Petullo2023-05-26
| | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | gst1-plugins-base: update to 1.22.3W. Michael Petullo2023-05-26
| | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | gstreamer1: update to 1.22.3W. Michael Petullo2023-05-26
| | | | | | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | | Merge pull request #21168 from jefferyto/python-poetry-core-1.6.0Tianling Shen2023-05-26
|\ \ \ | | | | | | | | python-poetry-core: Update to 1.6.0
| * | | python-poetry-core: Update to 1.6.0Jeffery To2023-05-25
| |/ / | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | postgresql: update to 15.2Nick Hainke2023-05-25
| | | | | | | | | | | | | | | | | | | | | | | | Release Notes: https://www.postgresql.org/docs/release/15.2/ Fixes: CVE-2022-41862 Signed-off-by: Nick Hainke <vincent@systemli.org>
* | | Merge pull request #21166 from jefferyto/python3-do-not-link-libbsdTianling Shen2023-05-25
|\ \ \ | |/ / |/| | python3: Fix unnecessary linking with libbsd