xbmc-addon-settings: update to xbmc-addon-settings-0.0.21

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2013-02-15 20:35:39 +01:00
parent 09cf252afc
commit a39ca432cd
3 changed files with 1 additions and 20 deletions

View File

@ -19,7 +19,7 @@
################################################################################
PKG_NAME="xbmc-addon-settings"
PKG_VERSION="0.0.20"
PKG_VERSION="0.0.21"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="prop."

View File

@ -1,12 +0,0 @@
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,10 +27,3 @@ 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