Compiling nginx (with uwsgi) for Fedora 12

October 17, 2011

In order to get access to uwsgi (useful for deploying python flask projects, for instance), one needs a version of nginx > 0.8 or so. But Fedora 12 doesn’t have such a modern version : Here’s how to compile it from source :
Actually, a less hacky approach is to simply back-port (trivially) [...]

Comments Off

Building a Python LibreOffice Extension

October 7, 2011

Here’s a pretty minimal setup for building an extension for LibreOffice in Python.
Working backwards, I’ve called the extension ‘mdda_fns.oxt’. Here’s the makefile, which is in the root of the package development tree :

all:    clean zip install
clean:
        unopkg remove mdda_fns.oxt
        rm mdda_fns.oxt
       
zip:
  [...]

Comments Off