Tagged Questions

4
votes
2answers
202 views

How to build debian package with CPack to execute setup.py?

Until now, my project had only .cpp files that were compiled into different binaries and I managed to configure CPack to build a proper debian package without any problems. Recently I wrote a couple ...
3
votes
2answers
76 views

How to access the original tarball when packaging for Debian?

I am packaging a piece of Python software that uses DistUtilsExtra. When running python setup.py install in my debian/rules, DistUtilsExtra automatically recompiles the translation template .pot file ...
3
votes
2answers
276 views

easy, straightforward way to package a python program for debian?

i'm having trouble navigating the maze of distribution tools for python and debian; cdbs, debhelper, python-support, python-central, blah blah blah .. my application is a fairly straightforward one - ...
2
votes
1answer
152 views

Linux packaging abstraction layer written in Python?

I'm looking for a way to generate .deb and .rpm packages from my build scripts, containing the resulting products. Since everything is written in Python, I'm wondering if anyone knows of an ...
1
vote
1answer
30 views

Tips for interacting with debian based repositories

I am planning on writing a small program that interacts with a debian based repository - namely doing a partial mirror**. I am planning to write it in python. What are some tips for working with the ...
1
vote
2answers
251 views

How to create a .deb of a single Python script

I've created a GUI frontend in Python for playing and recording audio streams and would like to create a .deb file so my friends can easily install the script on their Ubuntu systems. This is my first ...
1
vote
1answer
216 views

distributing django application via deb repository

I have created/testing small to medium size ( mysql + django (python) ) application which I would like to distribute via Debian repository so that my users ( who uses ubuntu ) can easily install and ...
0
votes
1answer
273 views

Making a deb from a python file

After following http://ubuntuforums.org/showthread.php?t=406069 I got to know how to make a deb file which automatically places the python file as an executable to /usr/bin directory. I want my ...
-1
votes
0answers
42 views

How do I package my Python Code in APT (Advanced Packaging Tool) and make it available for installations?

I have gone through APT (Advanced_Packaging_Tool) but could not find actual steps to take to CREATE an apt package so that it can be then installed via "apt-get install myApplication" reprepo can be ...