wheel2deb icon indicating copy to clipboard operation
wheel2deb copied to clipboard

Python Wheel to Debian package converter

Results 22 wheel2deb issues
Sort by recently updated
recently updated
newest added

Follow-up for #19, same changes, but changes going into main :)

Follow-up for #21, same changes, but changes going into `main` :)

wheel2deb cannot recognize python packages dependencies, which are stored in .whl file METADATA, if package setup.cfg file does not include lines: `[bdist_wheel] universal = 1 ` But python dependencies METADATA...

How to develop debian source package, produced by wheel2deb ? wheel2deb does not include setup.py to dsc. It's possible debuild edited package through chain "apt source, edit, PACKAGE and upload...

Running the command: wheel2deb --map attrs=attr Is producing the following output: Traceback (most recent call last): File "/usr/bin/wheel2deb", line 6, in from pkg_resources import load_entry_point File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 3254, in...

Currently the entrypoint is `wheel2deb`, and this makes it hard to run `wheel2deb ` on that image.

It would be great to see this getting published to Docker (currently still managed under [parkoview's account](https://cloud.docker.com/u/parkoview/repository/docker/parkoview/wheel2deb) directly from GitHub. We are intending to use this in a Dockerized GitHub...

Hello, Thank you for this nice project. I tried to use it for building debian/ubuntu packages in a CI/CD pipeline for ubuntu focal. Unfortunately numpy does not work out of...

https://github.com/upciti/wheel2deb/blob/master/src/_wheel2deb/debian.py#L27 I suggest to add the following architecture mapping to support s390 (linux on Z) ``` 'linux_s390x': 's390x' ``` Where 'linux_s390x' is the python identifier for the architecture and `s390x`...

If `wheel2deb` is used to build a Debian package for a project that has a `console_scripts` entry point, you may find yourself in a position where you cannot install a...