aboutsummaryrefslogtreecommitdiff
path: root/lang
Commit message (Collapse)AuthorAge
* python3-package.mk: add check for dependencies in host-pip-requirementsAlexandru Ardelean2021-08-30
| | | | | | | | | | | | | | | | | | | | It often happens that we update a package to a new version (e.g. cffi) to a newer version, but we forget to update the version for cffi in the `lang/python/host-pip-requirements/cffi.txt` file. This check adds a minimal check, so that when a build occurs for a Python package, if there is a mention/listing of this package in `lang/python/host-pip-requirements/` it will check that the versions match. This way, when we update a package, we get a build failure and update the host version as well. This will omit packages (like Cython) that are not packaged for OpenWrt, but are host-side dependencies only. But until we find some mechanism to check for those, we will probably only notice to update them when another build occurs (at the very least). Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* seafile-seahub: move Django-1.11.txt in package folderAlexandru Ardelean2021-08-30
| | | | | | | | | Django 1.11 (host-build) is only needed for Seahub. And won't ever be needed for anything else (hopefully). This change moves it to the Seahub folder. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python-websocket-client: update to 1.2.1Michal Vasilek2021-08-27
| | | | | | | | * update license (changed in 1.2.0) * removed python3-six dependency (removed in 1.0.0) * do not install tests Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
* Merge pull request #16459 from commodo/numpyRosen Penev2021-08-25
|\ | | | | numpy: bump to version 1.21.2
| * numpy: bump to version 1.21.2Alexandru Ardelean2021-08-25
| | | | | | | | | | | | | | Switch to AUTORELEASE for PKG_RELEASE. And update Cython as well. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | lua: penlight: bump to 1.11.0Karl Palsson2021-08-25
|/ | | | | | | | | | | | Feature updates, and some minor bugfixes. Changelog for 1.11.0: https://github.com/lunarmodules/Penlight/blob/master/CHANGELOG.md#1110-2021-08-18 Changelog for prior releases rolled up here are in the same changelog. This also moves to the "final" home, under lunarmodules, instead of the temporary "tieske" maintainer's private github, see https://github.com/lunarmodules/Penlight/issues/339 Signed-off-by: Karl Palsson <karlp@etactica.com>
* python-simplejson: bump to version 3.17.5Alexandru Ardelean2021-08-24
| | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* golang: Update to 1.17Jeffery To2021-08-23
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3-setuptools: add _distutils_hackJosef Schlehofer2021-08-18
| | | | | | | | | | | | | | | | | | | | | | | | I tried to install matplotlib by using pip and it failed with the following output: 2021-08-18T11:52:26,171 Collecting matplotlib 2021-08-18T11:52:26,173 Created temporary directory: /tmp/pip-unpack-wuth2u0e 2021-08-18T11:52:26,565 Using cached matplotlib-3.4.3.tar.gz (37.9 MB) 2021-08-18T11:52:38,659 Added matplotlib from https://files.pythonhosted.org/packages/21/37/ 197e68df384ff694f78d687a49ad39f96c67b8d75718bc61503e1676b617/matplotlib-3.4.3.tar. gz#sha256=fc4f526dfdb31c9bd6b8ca06bf9fab663ca12f3ec9cdf4496fb44bc680140318 to build tracker '/tmp/pip- req-tracker-u30x8pht' 2021-08-18T11:52:38,660 Running setup.py (path:/tmp/pip-install-afiyiers/ matplotlib_8e717e38862f4976a3d6cb1832ba3261/setup.py) egg_info for package matplotlib 2021-08-18T11:52:38,661 Created temporary directory: /tmp/pip-pip-egg-info-kbtiezxq 2021-08-18T11:52:38,662 Running command python setup.py egg_info 2021-08-18T11:52:38,831 Traceback (most recent call last): 2021-08-18T11:52:38,832 File "<string>", line 1, in <module> 2021-08-18T11:52:38,832 File "/usr/lib/python3.9/site-packages/setuptools/__init__.py", line 8, in <module> 2021-08-18T11:52:38,833 ModuleNotFoundError: No module named '_distutils_hack' More details about it: - https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=968410 Once I applied the patch from the bug tracker, I got further to install it. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* Merge pull request #16327 from cotequeiroz/lua-rs232Rosen Penev2021-08-18
|\ | | | | lua-rs232: don't rely on detected luadir
| * lua-rs232: don't rely on detected luadirEneas U de Queiroz2021-08-11
| | | | | | | | | | | | | | | | | | | | | | | | | | If TOPDIR starts with /usr, then the configure script will use the staging tree hierarchy instead of using plain /usr/lib. For example, if TOPDIR=/usr/src/openwrt, then the files will not be available under $(PKG_INSTALL_DIR)/usr/lib/lua/5.1/, as expected, but under $(PKG_INSTALL_DIR)/usr/src/openwrt/staging_dir/hostpkg/lib/lua/5.1/. Set the correct path when calling 'make'. As a bonus, the hardcoded version number in the Makefile can be dropped. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | Merge pull request #16382 from cotequeiroz/perl_flockRosen Penev2021-08-17
|\ \ | | | | | | perl: perlmod.mk: wrap hostpkg perl usage around flock
| * | perl: perlmod.mk: use flock when hostpkg/perl usedEneas U de Queiroz2021-08-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoid parallel relinking and usage of the host perl binary by wrapping its usage around flock calls. Sometimes, two packages will try to relink the static host perl binary at the same time. Neither of them will have the other's module linked in, and one of them will unavoidably clobber the other one's binary. This will lead to errors when a package will not be able to find a module that was supposed to be installed. To fix that, an exclusive flock is used when relinking, with a 900 seconds timeout to avoid locking up the build process forever. This is not enough because the binary may be concurrently used to build another module package; perl is used in Configure, Compile, and Install procedures. If timing is right, a package will fail with a "permission denied" error. So a shared flock call is added in Configure, Compile, and Install definitions for host and target, with a shorter, 300 seconds timeout. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | | python-cachelib: update to version 0.3.0Stepan Henek2021-08-17
|/ / | | | | | | Signed-off-by: Stepan Henek <stepan.henek@nic.cz>
* | Merge pull request #16326 from cotequeiroz/install_hostRosen Penev2021-08-14
|\ \ | | | | | | perlmod.mk, unixodbc: use 'install' instead of 'cp' to install host binaries to avoid "Text file busy" error.
| * | perl: perlmod.mk: use 'install' for host binariesEneas U de Queiroz2021-08-11
| |/ | | | | | | | | | | | | | | | | When installing a host perl module, the host perl binary in the staging dir is replaced by using 'cp'. However, if the binary is running in a parallel job, cp will fail with a text file busy error. Use $(INSTALL_BIN), which unliks the file first to avoid the error. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* | django: bump to version 3.2.6Alexandru Ardelean2021-08-13
| | | | | | | | | | | | And switch to AUTORELEASE for PKG_RELEASE. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | python-sqlalchemy: update to version 1.4.22Josef Schlehofer2021-08-13
| | | | | | | | | | | | Update copyright Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | Merge pull request #16320 from turris-cz/babelAlexandru Ardelean2021-08-12
|\ \ | | | | | | python-babel: update to version 2.9.1
| * | python-babel: update to version 2.9.1Josef Schlehofer2021-08-11
| |/ | | | | | | | | | | | | Changelog: https://github.com/python-babel/babel/releases/tag/v2.9.1 Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* / python-curl: update to version 7.44.0Josef Schlehofer2021-08-12
|/ | | | | | | | | | | | | Changelog: PycURL 7.44.0 - 2021-08-08 -------------------------- This release reinstates best effort Python 2 support, adds Python 3.9 and Python 3.10 alpha support and implements support for several libcurl options. Official Windows builds are currently not being produced. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* Merge pull request #16308 from jefferyto/golang-1.16.7Rosen Penev2021-08-09
|\ | | | | golang: Update to 1.16.7
| * golang: Update to 1.16.7Jeffery To2021-08-09
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-twisted: Update to 21.7.0, refresh patchesJeffery To2021-08-09
|/ | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3-distro: update to version 1.6.0Javier Marcet2021-08-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - BACKWARDS COMPATIBILITY: - Deprecated the distro.linux_distribution() function. Use distro.id(), distro.version() and distro.name() instead [#296] - Deprecated Python 2.7, 3.4 and 3.5 support. Further releases will only support Python 3.6+ - ENHANCEMENTS: - Added type hints to distro module [#269] - Added __version__ for checking distro version [#292] - Added support for arbitrary rootfs via the root_dir parameter [#247] - Added the --root-dir option to CLI [#161] - Added fallback to /usr/lib/os-release when /etc/os-release isn't available [#262] - BUG FIXES: - Fixed subprocess.CalledProcessError when running lsb_release [#261] - Ignore /etc/iredmail-release file while parsing distribution [#268] - Use a binary file for /dev/null to avoid TextIOWrapper overhead [#271] - RELEASE: - Moved repository from nir0s/distro to python-distro/distro on GitHub. Signed-off-by: Javier Marcet <javier@marcet.info>
* pyodbc: update hashTianling Shen2021-08-01
| | | | | | | | This package was updated without a hash change. Fixes: c1575225807cab ("pyodbc: update to version 4.0.31") Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* Flash: update to version 2.0.1Daniel Golle2021-08-01
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* Jinja2: update to version 3.0.1Daniel Golle2021-08-01
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* Werkzeug: update to version 2.0.1Daniel Golle2021-08-01
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* MarkupSafe: update to version 2.0.1Daniel Golle2021-08-01
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* click: update to version 8.0.1Daniel Golle2021-08-01
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* itsdangerous: update to version 2.0.1Daniel Golle2021-08-01
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* pyodbc: update to version 4.0.31Daniel Golle2021-08-01
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* perl-net-dns: update to version 1.32Daniel Golle2021-08-01
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* Merge pull request #16262 from nxhack/node_14174Rosen Penev2021-07-31
|\ | | | | node: bump to 14.17.4
| * node: bump to 14.17.4Hirokazu MORIKAWA2021-07-31
| | | | | | | | | | | | | | | | | | | | July 2021 Security Releases: Use after free on close http2 on stream canceling (High) (CVE-2021-22930) Node.js is vulnerable to a use after free attack where an attacker might be able to exploit the memory corruption, to change process behavior. You can read more about it in https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22930 Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | Merge pull request #16248 from mhei/php7-updateMichael Heimpold2021-07-31
|\ \ | | | | | | php7: update to 7.4.22
| * | php7: update to 7.4.22Michael Heimpold2021-07-29
| |/ | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | php8: add CI runtime testMichael Heimpold2021-07-29
| | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | php8: update to 8.0.9Michael Heimpold2021-07-29
|/ | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* Merge pull request #16078 from ja-pa/fix-emailRosen Penev2021-07-29
|\ | | | | treewide: change email address in PKG_MAINTAINER
| * treewide: change emailJan Pavlinec2021-07-29
| | | | | | | | | | | | Change from jan.pavlinec@nic.cz to jan.pavlinec1@gmail.com Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | Merge pull request #16106 from rpoisel/dev-add-lua-curl-v3Rosen Penev2021-07-29
|\ \ | | | | | | Lua-cURLv3: add package
| * | Lua-cURLv3: add packageRainer Poisel2021-07-16
| |/ | | | | | | Signed-off-by: Rainer Poisel <rainer.poisel@gmail.com>
* | numpy: fix circular dependencyAlexandru Ardelean2021-07-29
| | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | numpy: bump to version 1.21.1Alexandru Ardelean2021-07-26
| | | | | | | | | | | | | | | | | | | | | | Also bump Cython version to 0.29.23. And add support for OpenBLAS. Currently optional, but will be enabled by default on some architectures later. Depends on PR https://github.com/openwrt/packages/pull/15685 Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | python-requests: bump to version 2.26.0Alexandru Ardelean2021-07-23
| | | | | | | | | | | | | | | | | | This version prefers charset_normalizer instead of chardet. chardet is still usable if available. Dropping patches for idna. Not required anymore. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | python-dateutil: bump to version 2.8.2Alexandru Ardelean2021-07-23
| | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | Merge pull request #16098 from neheb/erlaRosen Penev2021-07-19
|\ \ | | | | | | erlang: disable PIE
| * | erlang: disable PIERosen Penev2021-07-11
| |/ | | | | | | | | | | Fails to compile with it on. Signed-off-by: Rosen Penev <rosenp@gmail.com>