aboutsummaryrefslogtreecommitdiff
path: root/net/uwsgi
Commit message (Collapse)AuthorAge
* uwsgi: update Maintainer nameChristian Marangi2024-04-21
| | | | | | Update maintainer name with real name for Christian Marangi. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* uwsgi: bump to latest 2.0.25.1 releaseChristian Marangi2024-04-21
| | | | | | | | | Bump to latest 2.0.25.1 release Drop upstream PCRE2 patch and alarm memory leak fix. Rework and refresh patch due to release bump. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* uwsgi: add experimental pcre2 patch and drop pcreChristian Marangi2023-09-22
| | | | | | Add experimental pcre2 patch and drop pcre in favor of pcre2 library. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* uwsgi: bump to release 2.0.22Christian Marangi2023-09-22
| | | | | | | Bump to release 2.0.22 to make it easier to apply patch for pcre2 support. Signed-off-by: Christian Marangi <ansuelsmth@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>
* uwsgi: make LuCI workGlen Huang2023-05-05
| | | | | | LuCI is no longer powered by lua, but ucode Signed-off-by: Glen Huang <me@glenhuang.com>
* uwsgi: bump version and use less workaroundsPeter Stadler2021-10-30
| | | | | | | * adopt pypi name and line numbers in patches * remove custom tar command and patch for using python3 (changed upstream) Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* uwsgi: update to version 2.0.19.1Peter Stadler2020-07-17
| | | | | | update to latest version. Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
* uwsgi: make luci-webui single threaded and log morePeter Stadler2020-05-04
| | | | | | | | | | More threads can lead to a problem if a luci-app makes a fork (e.g. for executing a command). Parallelism is still achieved by using `processes = 3`. Make the log more verbose by filtering only standard messages for start/stop/reload out (leaving one line each). Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
* uwsgi: Use pypi.mk to download source tarballJeffery To2020-04-29
| | | | | | | This also removes PKG_BUILD_DIR, which does not need to be explicitly set. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* treewide: Remove Python variants for non-Python packagesJeffery To2020-04-19
| | | | | | | | | | | This removes Python-related build variants, and adds PYTHON3_PKG_BUILD:=0 and minor build adjustments (where appropriate), for non-Python packages. There should be no changes to build output. This also updates some include paths for python3-package.mk and/or python3-host.mk to be relative to the package Makefile. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Rename canned recipes in python3-package.mkJeffery To2020-04-19
| | | | | | | This renames "internal" recipes to use the Python3/ prefix and clarifies the names (RunTarget to Run, Mod to ModSetup, Shebang to FixShebang). Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3: Remove HostPython3 in python3-host.mkJeffery To2020-04-19
| | | | | | | | | | | | | | | HostPython3 only adds a few environment variables before running host Python. It has only two users, Build/Compile/HostPy3RunHost and Build/Compile/HostPy3RunTarget. HostPython3 also accesses $(PYTHON3PATH), even though python3-host.mk does not include python3-package.mk, where the variable is defined. This removes HostPython3 and has its two users run host Python directly. This also combines the environment variables of HostPython3 and the two users into HOST_PYTHON3_VARS and PYTHON3_VARS. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* uwsgi: use higher limit-as to fix issue #7250Peter Stadler2020-01-21
| | | | Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>
* uwsgi: add modular package superseeding uwsgi-cgiPeter Stadler2020-01-01
Provide the minimal applications and plugins for: cgi, filelog, syslog and python3. More plugins can be added if needed by other packages. Autostart uwsgi in emperor mode loading vassals on demand. For now, include luci-support (maybe it will be moved to another package), which uses the syslog plugin by default. Signed-off-by: Peter Stadler <peter.stadler@student.uibk.ac.at>