| Commit message (Collapse) | Author | Age |
... | |
|\ \
| |/
|/| |
Python3: Add python3-pip, python3-setuptools and their dependencies
|
| |
| |
| |
| | |
Signed-off-by: Florian Fieber <florian@florianfieber.de>
|
| |
| |
| |
| | |
Signed-off-by: Florian Fieber <florian@florianfieber.de>
|
| |
| |
| |
| | |
Signed-off-by: Florian Fieber <florian@florianfieber.de>
|
| |
| |
| |
| |
| |
| |
| | |
- Add configure arguments for distutils path detection
- Add '_python_*' env vars to host python
Signed-off-by: Florian Fieber <florian@florianfieber.de>
|
| |
| |
| |
| | |
Signed-off-by: Florian Fieber <florian@florianfieber.de>
|
|\ \
| | |
| | | |
python-cffi: add host compile/install, upgrade to 1.3.1
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This depends on:
- python-setuptools host install (#1985)
- python-pycparser host install (#2033)
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \
| | | |
| | | | |
python-pycparser: add host compile/install
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This depends on:
- python-setuptools host install (#1985)
- python-ply host install (#2032)
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \
| | | |
| | | | |
python-ply: add host compile/install
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
This depends on python-setuptools host install in PR #1985
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \
| | | |
| | | | |
python-setuptools: add ability to install on host
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
This depends on python-host.mk in PR #1984
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \
| | | |
| | | | |
python-setuptools: upgrade to version 18.7
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
|/ / /
| | |
| | |
| | | |
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Configuration scripts expect the libc identifier to be "uclibc" in case we're using it,
OpenWrt provides "uClibc". Oh well...
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| | |
This was previously manually set to '4.8.0'. Aside from just being incorrect,
it also breaks Errno's GCC5 detection.
Fixes #2044.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|\ \
| | |
| | | |
python: add capability to install python packages for the host
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Some python packages (e.g. cffi) compile one or more shared libraries
as part of their setup process. When these packages are setup
dependencies of other packages (e.g. cryptography), these packages (and
their shared libraries) will need to be loaded on the host system.
This adds a makefile, similar to python-package.mk, to simplify
installing python packages on the host.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Since 94f87dc1, host build of Python depends on expat installed in host
staging directory. However, pyexpat extension fails to build if expat
was not built and installed to staging dir before - adding host build
dependency should fix this.
Signed-off-by: Jan Čermák <jan.cermak@nic.cz>
|
|\ \
| | |
| | | |
micropython: update to latest
|
| | |
| | |
| | | |
Signed-off-by: Roger D <rogerdammit@gmail.com>
|
| | |
| | |
| | | |
Signed-off-by: Roger D <rogerdammit@gmail.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|\ \ \
| | | |
| | | | |
node: add python/host to HOST_BUILD_DEPENDS as well
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
|
|\ \ \ \
| | | | |
| | | | | |
python-cffi: new package
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
From PyPI:
Foreign Function Interface for Python calling C code.
This depends on python-pycparser, which is in PR #1970
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
python-pycparser: new package
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
From the README:
pycparser is a parser for the C language, written in pure Python. It is a
module designed to be easily integrated into applications that need to parse
C source code.
This depends on python-ply, which is in PR #1956
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
python-ply: new package
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
From the README:
PLY is a 100% Python implementation of the common parsing tools lex
and yacc.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
python-ipaddress: new package
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
From the README:
Python 3.3+'s ipaddress for Python 2.6, 2.7, 3.2.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
python-enum34: new package
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
From the README:
enum34 is the new Python stdlib enum module available in Python 3.4
backported for previous versions of Python from 2.4 to 3.3.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
python-idna: new package
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
From the README:
A library to support the Internationalised Domain Names in Applications
(IDNA) protocol as specified in RFC 5891. This version of the protocol
is often referred to as "IDNA2008" and can produce different results
from the earlier standard from 2003.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
python-six: new package
|