Out there there is a ton of information on how to do this, but since "there is more than a way to skin a cat", and all the tutorials/manuals that cover a bit of the process seem to make certain assumptions which are different from other tutorials, I still didn't manage to grasp it.
So far this is what I think I understood (please correct me if I am wrong).
- My final goal should be that of creating a "binary" .deb package. Such package will be platform independend (32/64 bit) as all python programs are such.
- To create a "binary" package I need first to create a source package.
- To create the source package I can use either
CDBSordebhelper. Debhelper is the recommended way for beginners. - The core of creating a source package is populating the DEBIAN directory in the source directory with a number of files clarifying where files need to be copied, what copyright and licensing scheme they are subject to, what dependencies they have, etc...
- Step #4 can be largely automated the
dh_makecommand if the python source also comes with a distutils'setup.pyscript.
Now my questions:
- Is my understanding of the process correct? Is there anything I am missing, or anything that I got wrong?
- Step #5 is really the more confusing to me: specifically the two points that remains most obscure to me are:
- How do I write a
setup.pyscript that install a stand-alone programme? EDIT: By standalone rogramme I mean a program intended to be used by a desktop user (as opposed to a module which I understand like a collection of functionality to be used by other software after having been imported). In my specific case I would actually need two such "programs": the main software and a separate utility (in effect a second "program" that should be in the same package with the other one). - What are the specificities of such script for DEB packages? The official documentation only seems to deal with RPM and Windows stuff...
- How do I write a
Thanks in advance for your help and support!
BTW: These is are the best source of information that I could find myself so far, if you have anything better than this, please share! :)
- Ubuntu's python packaging guide
- Creating a .deb package from a python setup.py (it shows the steps but doesn't explain them enough for me to follow along)
- ShowMeDo video on "creating a .deb package out of a python program" (it doesn't seem up-to-date and - if I got it right - will produce packages for personal use, without dependencies and without signed changelog and other key data that will make it incompatible with the debian policy).
setup.pybit. This is comparable to theautotoolsstep many GNU C/C++ projects use, but specific to python. This is easier than it sounds, read docs.python.org/distutils/index.html – TokenMacGuy Aug 18 '11 at 16:21main.pyfile (I suppose you might call it "a script") AND a series of modules AND some other YAML and SVG files... I'm still struggling to find clear documentation on how to achieve that. The best I could find so far is the distutils tutorial which I still studying... – mac Aug 18 '11 at 16:58