Age | Commit message (Collapse) | Author | Files |
|
|
|
|
|
Allow a distribution to globally bump the PR of every package
this is useful when there was a change in the toolchain and
every package is going to be different.
find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR="/"FILE_PR ="/ {} \;
find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR ="/"FILE_PR ="/ {} \;
Acked-By: Koen Kooi <koen@openembedded.org>
|
|
|
|
|
|
|
|
to python-lang
|
|
python-cross builds now)
|
|
|
|
|
|
|
|
up parsing
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code during configure
* it wraps scons with distutils. crazy python dudes
|
|
|
|
|
|
|
|
|
|
(mostly motivated by E switching their SCM)
|
|
needed for sugar
* it uses some python magic to add -L/usr/lib, which breaks the build
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ideas from the existing templating languages
|
|
|
|
|
|
* bump python_2.5.2.bb PR
|
|
Thanks to the default-is-optimized patch, this python was running in optimized
mode all the time, there was no way to run it unoptimized. However this
is necessary at times (e.g. if you want to run code that contains 'assert'
statements, since optimized bytecode strips these out), so I added a new
command line parameter 'N' to python that allows you to run it unoptimized.
|
|
|
|
|
|
This fixes the infamous:
TypeError: swig_sources() takes exactly 2 arguments (3 given)
|
|
not compile python-e*
|
|
|
|
|
|
|