aboutsummaryrefslogtreecommitdiff
path: root/lang
Commit message (Collapse)AuthorAge
* ruby: change source to .xzLuiz Angelo Daros de Luca2017-03-27
| | | | | | It will save about 2M of download. Thanks @diizzyy. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* php7-pecl-dio: upgrade to 0.1.0Michael Heimpold2017-03-27
| | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* php7-pecl-http: remove left-over backup directoryMichael Heimpold2017-03-27
| | | | | | | This directory was added by mistake in one of the last commits to this package, just remove it, it's not needed. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* python3: upgrade to version 3.6.1Alexandru Ardelean2017-03-27
| | | | | | | | | Dropped patch `002-do-not-add-include-dirs-when-cross-compiling.patch` Seems upstream also fixed it (yay). Refreshed patch `011-fix-ncursesw-definition-colisions.patch` Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* ruby: bump to 2.4.1Luiz Angelo Daros de Luca2017-03-23
| | | | | | | This releases contains only bug and security fixes, mostly backported from devel branch. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* php7: update to 7.1.3Michael Heimpold2017-03-20
| | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* python,python3: bump PKG_RELEASEsAlexandru Ardelean2017-03-09
| | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python3: split source packages away from compiled packagesAlexandru Ardelean2017-03-09
| | | | | | Same as for python. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python: split source packages away from compiled packagesAlexandru Ardelean2017-03-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Well, they're not yet compiled, but in the next commit they should be. People have been complaining [citation needed] to me via email or via Github that Python's performance is crap because it packages sources directly and they're not compiled. And Python has to compile the sources on each run, and on-the-fly. Allowing compilation caching is also a no-no, because I'll get complaints that the flash storage fills up whenever a Python app runs. So, to give the user a choice, the new de-facto packaging for Python packages will be: * ship compiled + [ preferably ] optimized files * package sources separately The problem is that this doubles the number of packages in LEDE/OpenWrt, but build-times should not suffer a big hit, since the compilation is done once, and the install phase should not be too intensive. Oh, and people don't need ship source packages if they don't want to. To do that, a packager needs to just call `$(eval $(call BuildPackage,python-<package>-src))` The `python-` prefix is important. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python,python3: drop remove .pyc & .pyo filesAlexandru Ardelean2017-03-09
| | | | | | We'll control in the install phase what we ship [byte-codes or source files] Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python,python3: drop tests from all core packagesAlexandru Ardelean2017-03-09
| | | | | | | Well, this slipped by for some time. This should make the Python core packages even more lighter. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python3: make sure $(1)/usr/lib path exists for python3-dev packageAlexandru Ardelean2017-03-09
| | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python: fix python-dev clash with python-baseAlexandru Ardelean2017-03-09
| | | | | | | Both want to install libpython.so. python-dev should install libpython.a Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python,python3: move PyPackage install rules in the beggining of the Package ↵Alexandru Ardelean2017-03-09
| | | | | | | | | install rules So that we can process Python sources installed by those rules, if we need to. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python3: move filespec shell code into fileAlexandru Ardelean2017-03-09
| | | | | | Same as for python. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python: move filespec shell code into fileAlexandru Ardelean2017-03-09
| | | | | | | Cleanup. And preparation for adding a bit more functionality. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* python,python3: fix goof with multiline command breakAlexandru Ardelean2017-03-09
| | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* treewide: use name in define and eval linesStijn Tintel2017-03-08
| | | | | | | | | | | | | | | For consistency, use full name instead of $(PKG_NAME) in define and eval lines for all packages. I've seen reviews that asked to do this before, and I am asking the same during reviews now. To avoid this in the future, fix this treewide so when people use existing packages as example, we will not have to request this change anymore. This makes all packages consistent with both LEDE and OpenWrt base repositories. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* Merge pull request #4074 from commodo/python-cryptografix-fixHannu Nyman2017-03-06
|\ | | | | python-cryptography: fix build by disabling setup requirements
| * python-cryptography: fix build by disabling setup requirementsAlexandru Ardelean2017-02-26
| | | | | | | | | | | | | | | | | | python-cryptography tries to install other packages during setup. However, this isn't needed, since they should have been already resolved/installed via LEDE/OpenWrt's build system dep logic. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | php7: update to 7.1.2Michael Heimpold2017-02-24
|/ | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* Merge pull request #3967 from commodo/python-pyscopg2Hannu Nyman2017-02-22
|\ | | | | python-psycopg2: replace python-setuptools dep with python/host
| * python-pyscopg2: replace python-setuptools dep with python/hostAlexandru Ardelean2017-02-07
| | | | | | | | | | | | | | After removing python-setuptools package, the dependency chain to python/host is a bit different. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | Merge pull request #4039 from the-alien/masterHannu Nyman2017-02-19
|\ \ | | | | | | python-ldap: update to 2.4.32
| * | python-ldap: update to 2.4.32alien2017-02-19
| | | | | | | | | | | | Signed-off-by: Dmitry Trefilov <the-alien@live.ru>
* | | Merge pull request #3860 from commodo/micropython-lib-workaroundHannu Nyman2017-02-17
|\ \ \ | | | | | | | | micropython-lib: workaround the `install` build rule
| * | | micropython-lib: workaround the `install` build ruleAlexandru Ardelean2017-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So, I chose to workaround it in the Makefile. A proper fix is a bit more work that I would like to do now, and I have no suggestion/idea for a good fix right now. The problem is with the `CMD` part that's used in the install rule, together with the fact that PREFIX is the same as the source location. ``` CMD="find . -maxdepth 1 -mindepth 1 \( -name '*.py' -not -name 'test_*' -not -name 'setup.py' \) -or \( -type d -not -name 'dist' -not -name '*.egg-info' -not -name '__pycache__' \)| xargs --no-run-if-empty cp -r -t $(PREFIX)" ``` The gist of it, is that it seems that this will filter and copy to `PREFIX` all python sources and folders that are not names `dist`, `__pycache__`, or `*.egg-info`. And it searches all folders at (exactly) depth 1. The solution I chose is to put a `dist` folder under `_install_tmp`, which is kind of a trick to go to depth 2 and avoid both conditions in the `find` call. This avoids errors: ``` cp: './weakref.py' and '/home/sandu/work/lede/build_dir/target-mips_24kc_musl-1.1.16/micropython-lib-1.8.6-f81e979c56dddb771ad36ec381b7f2c6cd12111f-f81e979c56dddb771ad36ec381b7f2c6cd12111f/_install_tmp/weakref.py' are the same file cp: './xmltok.py' and '/home/sandu/work/lede/build_dir/target-mips_24kc_musl-1.1.16/micropython-lib-1.8.6-f81e979c56dddb771ad36ec381b7f2c6cd12111f-f81e979c56dddb771ad36ec381b7f2c6cd12111f/_install_tmp/xmltok.py' are the same file cp: './zipfile.py' and '/home/sandu/work/lede/build_dir/target-mips_24kc_musl-1.1.16/micropython-lib-1.8.6-f81e979c56dddb771ad36ec381b7f2c6cd12111f-f81e979c56dddb771ad36ec381b7f2c6cd12111f/_install_tmp/zipfile.py' are the same file ``` Initially I tried to add exit 0, but that would just hide other (potentially worse) issues. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | luv: new packageMorteza Milani2017-02-16
| | | | | | | | | | | | | | | | | | | | | | | | Luv is libuv binding for lua. Signed-off-by: Morteza Milani <milani@pichak.co>
* | | | Merge pull request #3784 from diizzyy/patch-16Hannu Nyman2017-02-15
|\ \ \ \ | | | | | | | | | | lang/python3-bottle: Update to 0.12.12
| * | | | lang/python3-bottle: Update to 0.12.12Daniel Engberg2017-01-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update to 0.12.12 Switch to pypi repo which also fixes file name on tarball Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
* | | | | Merge pull request #4001 from kissg1988/seafileHannu Nyman2017-02-14
|\ \ \ \ \ | | | | | | | | | | | | seafile: update to version 6.0.7
| * | | | | seafile: update to version 6.0.7Gergely Kiss2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update several dependencies, as well: * django-compressor -> 2.1.1 * django-constance -> 1.3.4 * django-restframework -> 3.5.4 * django-statici18n -> 1.3.0 * django -> 1.8.17 * openpyxl -> 2.4.2 * python-dateutil -> 2.6.0 * python-urllib3 -> 1.20 Signed-off-by: Gergely Kiss <mail.gery@gmail.com>
* | | | | | Merge pull request #3998 from commodo/fix-ncurses-buildHannu Nyman2017-02-13
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | python,python3: fix ncurses module build
| * | | | | python3: fix ncursesw definition collisionsAlexandru Ardelean2017-02-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | setup.py seems to add the host's /usr/include/ncursesw header. Reported-by: Arturo Rinaldi <arturo@arduino.org> Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | | | python: remove setupterm() redefinitionAlexandru Ardelean2017-02-13
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's not 100% aligned with the ncurses' definition. Reported-by: Arturo Rinaldi <arturo@arduino.org> Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* / / / / python-ldap: update to 2.4.30alien2017-02-13
|/ / / / | | | | | | | | | | | | Signed-off-by: Dmitry Trefilov <the-alien@live.ru>
* | | / python,python3: override python setuptools & pip versionsAlexandru Ardelean2017-02-09
| |_|/ |/| | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | Merge pull request #3943 from commodo/python3-cffiHannu Nyman2017-02-03
|\ \ \ | | | | | | | | python3-cffi: add variant
| * | | python-cffi: add python3 variantAlexandru Ardelean2017-02-01
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | python-pycparser: add python3 variantAlexandru Ardelean2017-02-01
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | python-ply: add python3 variantAlexandru Ardelean2017-02-01
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | | lang/python-pcapy: Bumped version to 0.11.1Andrew McConachie2017-02-01
|/ / / | | | | | | | | | | | | | | | | | | Signed-off-by: Andrew McConachie <andrew@depht.com> Compile tested: AMD64 Run tested: tested Description: new release
* | | python-packages: remove python-pip/host dependencyAlexandru Ardelean2017-01-26
| | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | python-dns: remove python-setuptools/host dependencyAlexandru Ardelean2017-01-26
| | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | php7: update to 7.1.1Michael Heimpold2017-01-24
| | | | | | | | | | | | Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | php7: fix xml2-config path to unbreak buildMatthias Schiffer2017-01-24
| | | | | | | | | | | | | | | | | | Partially reverts 4a984a8d6. Fixes #3907. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
* | | Merge pull request #3897 from commodo/python-unifyHannu Nyman2017-01-24
|\ \ \ | | | | | | | | python,python3,pip,setuptools: unify pip & setuptools under python,python3
| * | | python,python3: add python-pip-conf package to be used by both python-pip & ↵Alexandru Ardelean2017-01-23
| | | | | | | | | | | | | | | | | | | | | | | | python3-pip Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | pip,setuptools: move as part of python,python3 buildAlexandru Ardelean2017-01-23
| | | | | | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
| * | | python,python3: install built-in pip and setuptoolsAlexandru Ardelean2017-01-23
| | | | | | | | | | | | | | | | | | | | | | | | Easier than using external package. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>