Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/messense/auditwheel-symbols
Find out which symbols are causing auditwheel too-recent versioned symbols error.
https://github.com/messense/auditwheel-symbols
auditwheel manylinux1 manylinux2010 manylinux2014
Last synced: 14 days ago
JSON representation
Find out which symbols are causing auditwheel too-recent versioned symbols error.
- Host: GitHub
- URL: https://github.com/messense/auditwheel-symbols
- Owner: messense
- License: mit
- Created: 2021-02-21T09:55:51.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-03T04:41:13.000Z (4 months ago)
- Last Synced: 2024-12-10T16:43:04.246Z (24 days ago)
- Topics: auditwheel, manylinux1, manylinux2010, manylinux2014
- Language: Rust
- Homepage:
- Size: 91.8 KB
- Stars: 15
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# auditwheel-symbols
[![GitHub Actions](https://github.com/messense/auditwheel-symbols/workflows/CI/badge.svg)](https://github.com/messense/auditwheel-symbols/actions?query=workflow%3ACI)
[![PyPI](https://img.shields.io/pypi/v/auditwheel-symbols.svg)](https://pypi.org/project/auditwheel-symbols)Find out which symbols are causing auditwheel too-recent versioned symbols error, resolves [pypa/auditwheel#36](https://github.com/pypa/auditwheel/issues/36) .
## Installation
```bash
pip install auditwheel-symbols
```## Usage
```bash
❯ auditwheel-symbols --help
auditwheel-symbols 0.1.4USAGE:
auditwheel-symbols [OPTIONS]FLAGS:
-h, --help Prints help information
-V, --version Prints version informationOPTIONS:
-m, --manylinux [possible values: 1, 2010, 2014, 2_24]ARGS:
❯ auditwheel-symbols --manylinux 2014 ~/Downloads/rjieba-0.1.5-cp36-abi3-manylinux2010_x86_64.whl
rjieba/rjieba.abi3.so is manylinux2014 compliant.❯ auditwheel-symbols --manylinux 1 ~/Downloads/rjieba-0.1.5-cp36-abi3-manylinux2010_x86_64.whl
rjieba/rjieba.abi3.so is not manylinux1 compliant because it links the following forbidden libraries:
libc.so.6 offending symbols: memcpy@@GLIBC_2.14
```## License
This work is released under the MIT license. A copy of the license is provided in the [LICENSE](../LICENSE) file.