
To build, $ docker build . --tag pyeclib-build-wheel $ for v in cp27-cp27m cp27-cp27mu cp35-cp35m ; do > docker run --rm --env PYTHON_VERSION=$v --env UID=$UID \ > --env GID=$(id -g) --volume $PWD:/output:Z pyeclib-build-wheel > done It should create x86_64 wheels suitable for CPython 2.7 and 3.5+ that include both liberasurecode and ISA-L libraries. Note that the pack_wheel.py script is useful even without the manylinux Docker container. It can even build self-contained wheels on OS X, though I've only tested on an old x86_64 mac, not the new arm64 hotness. Change-Id: Id0eb192da37dcc83646bffa9137c96b7749b179f
55 lines
671 B
Plaintext
55 lines
671 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
*.whl
|
|
|
|
# PyInstaller
|
|
# Usually these files are written by a python script from a template
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
target/
|