The branch, eden has been updated
via 03d28881933bcaabd773abdb78c0694686fbd2fc (commit)
via 704fade965799b9c754ee9db77fda9058fadbc8c (commit)
from c76b4e859ad9aa00f2016085857799c0b338a50d (commit)
- Log -----------------------------------------------------------------
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=03d28881933bcaabd773abdb78c0694686fbd2fc
http://xbmc.git.sourceforge.net/git/gitweb.cgi?p=xbmc/scripts;a=commit;h=704fade965799b9c754ee9db77fda9058fadbc8c
commit 704fade965799b9c754ee9db77fda9058fadbc8c
Author: Martijn Kaijser <[email protected]>
Date: Sat Nov 3 15:07:58 2012 +0100
[script.module.protobuf] -v2.4.2
diff --git a/script.module.protobuf/addon.xml b/script.module.protobuf/addon.xml
index 36e27df..957f590 100644
--- a/script.module.protobuf/addon.xml
+++ b/script.module.protobuf/addon.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.protobuf"
name="protobuf"
- version="2.4.1"
+ version="2.4.2"
provider-name="Valentin-Costel HÄloiu">
<requires>
<import addon="xbmc.python" version="2.0"/>
diff --git a/script.module.protobuf/changelog.txt
b/script.module.protobuf/changelog.txt
index 5a8d1a2..6f5109f 100644
--- a/script.module.protobuf/changelog.txt
+++ b/script.module.protobuf/changelog.txt
@@ -1,2 +1,5 @@
+[B]2.4.2[/B]
+- fix namespace declaration
+
[B]2.4.1[/B]
- initial Release for XBMC
diff --git a/script.module.protobuf/lib/google/__init__.py
b/script.module.protobuf/lib/google/__init__.py
index de40ea7..d2d2a43 100644
--- a/script.module.protobuf/lib/google/__init__.py
+++ b/script.module.protobuf/lib/google/__init__.py
@@ -1 +1,4 @@
-__import__('pkg_resources').declare_namespace(__name__)
+try:
+ __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+ __path__ = __import__('pkgutil').extend_path(__path__, __name__)
-----------------------------------------------------------------------
Summary of changes:
script.module.chardet/LICENSE.txt | 504 ++++++++++++++++++++
script.module.chardet/README.md | 4 +
.../addon.xml | 12 +-
.../changelog.txt | 2 +-
.../lib}/chardet/__init__.py | 2 +-
.../lib}/chardet/big5freq.py | 0
.../lib}/chardet/big5prober.py | 0
.../lib}/chardet/chardistribution.py | 0
.../lib}/chardet/charsetgroupprober.py | 0
.../lib}/chardet/charsetprober.py | 0
.../lib}/chardet/codingstatemachine.py | 9 +-
.../lib}/chardet/constants.py | 0
.../lib}/chardet/escprober.py | 0
.../lib}/chardet/escsm.py | 0
.../lib}/chardet/eucjpprober.py | 0
.../lib}/chardet/euckrfreq.py | 0
.../lib}/chardet/euckrprober.py | 0
.../lib}/chardet/euctwfreq.py | 0
.../lib}/chardet/euctwprober.py | 0
.../lib}/chardet/gb2312freq.py | 0
.../lib}/chardet/gb2312prober.py | 0
.../lib}/chardet/hebrewprober.py | 0
.../lib}/chardet/jisfreq.py | 0
.../lib}/chardet/jpcntx.py | 46 +-
.../lib}/chardet/langbulgarianmodel.py | 0
.../lib}/chardet/langcyrillicmodel.py | 0
.../lib}/chardet/langgreekmodel.py | 0
.../lib}/chardet/langhebrewmodel.py | 0
.../lib}/chardet/langhungarianmodel.py | 0
.../lib}/chardet/langthaimodel.py | 0
.../lib}/chardet/latin1prober.py | 19 +-
.../lib}/chardet/mbcharsetprober.py | 0
.../lib}/chardet/mbcsgroupprober.py | 0
.../lib}/chardet/mbcssm.py | 0
.../lib}/chardet/sbcharsetprober.py | 11 +-
.../lib}/chardet/sbcsgroupprober.py | 0
.../lib}/chardet/sjisprober.py | 10 +-
.../lib}/chardet/universaldetector.py | 66 ++--
.../lib}/chardet/utf8prober.py | 0
script.module.protobuf/addon.xml | 2 +-
script.module.protobuf/changelog.txt | 3 +
script.module.protobuf/lib/google/__init__.py | 5 +-
42 files changed, 615 insertions(+), 80 deletions(-)
create mode 100644 script.module.chardet/LICENSE.txt
create mode 100644 script.module.chardet/README.md
copy {script.module.decorator => script.module.chardet}/addon.xml (56%)
copy {script.module.decorator => script.module.chardet}/changelog.txt (67%)
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/__init__.py (97%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/big5freq.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/big5prober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/chardistribution.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/charsetgroupprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/charsetprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/codingstatemachine.py (94%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/constants.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/escprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/escsm.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/eucjpprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/euckrfreq.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/euckrprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/euctwfreq.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/euctwprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/gb2312freq.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/gb2312prober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/hebrewprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/jisfreq.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/jpcntx.py (96%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/langbulgarianmodel.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/langcyrillicmodel.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/langgreekmodel.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/langhebrewmodel.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/langhungarianmodel.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/langthaimodel.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/latin1prober.py (95%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/mbcharsetprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/mbcsgroupprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/mbcssm.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/sbcharsetprober.py (96%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/sbcsgroupprober.py (100%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/sjisprober.py (98%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/universaldetector.py (76%)
mode change 100755 => 100644
copy {script.module.requests/lib/requests/packages =>
script.module.chardet/lib}/chardet/utf8prober.py (100%)
mode change 100755 => 100644
hooks/post-receive
--
Scripts
------------------------------------------------------------------------------
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d
_______________________________________________
Xbmc-addons mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xbmc-addons