Am Mittwoch 14 November 2007 schrieb JP Rosevear: > On Wed, 2007-11-14 at 15:08 +0100, Johannes Meixner wrote: > > Hello, > > > > what is the recommended way for packaging Python stuff? > > > > Either > > have byte-compiled Python .pyc and .pyo files packaged into the RPM > > or > > let this be done by the currently actually installed Python system > > during run-time on the end-user's computer and not by whatever > > (perhaps different) Python system during package build-time? > > This is kind of what I was trying to figure out myself for > python-gtkglext. The python automake macros seem to create both at > install time, but the files are identical. >
The problem is: they don't have to be identical. And python -O <myscript> will look for .pyo and python <myscript> looks for .pyc. So you need to package both, but can hardlink them if they are the same (fdupes is your friend) Greetings, Stephan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
