xbmc-addon-settings: create pyo files, add patch to use pyo files

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2013-02-14 16:55:05 +01:00
parent a4868c6e97
commit e7d7a78a67
3 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,32 @@
#!/bin/sh
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
#
# This Program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This Program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenELEC.tv; see the file COPYING. If not, write to
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
# http://www.gnu.org/copyleft/gpl.html
################################################################################
. config/options $1
cd $PKG_BUILD
rm -rf `find . -name "*.pyo"`
python -Wi -t -B $ROOT/$TOOLCHAIN/lib/python2.7/compileall.py ./service.openelec.settings/resources/lib/ -f
rm -rf `find ./service.openelec.settings/resources/lib/ -name "*.py"`
python -Wi -t -B $ROOT/$TOOLCHAIN/lib/python2.7/compileall.py ./service.openelec.settings/oe.py -f
rm -rf ./service.openelec.settings/oe.py

View File

@ -0,0 +1,12 @@
diff -Naur a/service.openelec.settings/oe.py b/service.openelec.settings/oe.py
--- a/service.openelec.settings/oe.py 2013-02-12 16:37:57.000000000 +0100
+++ b/service.openelec.settings/oe.py 2013-02-14 16:22:25.902628266 +0100
@@ -542,7 +542,7 @@
dictModules = {}
for strFilename in sorted(os.listdir(__cwd__+"/resources/lib/modules")):
- if not strFilename.startswith("__") and strFilename.endswith(".py"):
+ if not strFilename.startswith("__") and strFilename.endswith(".pyo"):
strModule, strExtension = strFilename.split(".")
try:

View File

@ -27,3 +27,10 @@ ZIP_PKG="`echo $PKG_URL | sed 's%.*/\(.*\)$%\1%'`"
mkdir -p $BUILD/${PKG_NAME}-${PKG_VERSION}
unzip $SOURCES/$1/$ZIP_PKG -d $BUILD/${PKG_NAME}-${PKG_VERSION} >/dev/null 2>&1
echo "### Applying upstream patches ###"
for patch in `ls $PKG_DIR/patches.upstream/*.patch`; do
cat $patch | patch -d \
`echo $BUILD/$PKG_NAME-$PKG_VERSION | cut -f1 -d\ ` -p1
done