welcome to the world of…

Looks like a small bulb used to indicate something unusual, like a malfunction.

Compile optimized Debian packages

Filed under: Uncategorized — Tags: , , , , , , — admin @ 2013-04-09 10:51

Do you envy Gentoo users their tuning? Debian packages are mostly shipped only with a basic optimization (-O2) and for more generic CPUs. How about fine tuning for your CPU? (more…)

Python setup.py to DEB package

Filed under: Uncategorized — Tags: , , , , , , , — admin @ 2011-05-13 10:29

From time to time I hit an interesting Python package which is not available in a DEB package. Setup.py/distutils/setuptools are de facto standard but the base binary distribution command set includes only RPM support. I don’t like python setup.py install. I prefer full installation/purging control via Ubuntu package system. Solution is easy.

Install package python-stdeb and then execute

python setup.py --command-packages=stdeb.command bdist_deb

And your DEB is ready! More information.