diff --git a/addon.xml b/addon.xml index 676b88d..60328b8 100644 --- a/addon.xml +++ b/addon.xml @@ -1,7 +1,7 @@ - + - + executable diff --git a/default.py b/default.py index 3ba9f05..b7d039f 100644 --- a/default.py +++ b/default.py @@ -1,7 +1,7 @@ -#-*- coding: utf-8 -*- -''' +# -*- coding: utf-8 -*- +""" python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman + Copyright (C) 2015-2022 DiMartino, srg70, RussakHH, aisman, inpos Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the @@ -21,38 +21,39 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' +""" -from python_libtorrent.python_libtorrent import get_libtorrent, log -from python_libtorrent.platform_pulsar import get_platform +import xbmc +import xbmcaddon import xbmcgui -import xbmcaddon, xbmc -sucsess=False -version='' -p=get_platform() +from python_libtorrent.platform_pulsar import get_platform +from python_libtorrent.python_libtorrent import get_libtorrent, log + +sucsess = False +version = '' +p = get_platform() dialog = xbmcgui.Dialog() try: - libtorrent=get_libtorrent() + libtorrent = get_libtorrent() log('Imported libtorrent v' + libtorrent.version + ' from get_libtorrent()') - version=str(libtorrent.version) - sucsess=True -except Exception, e: + version = str(libtorrent.version) + sucsess = True +except Exception as e: log('Error importing from get_libtorrent(). Exception: ' + str(e)) - -line2='python-libtorrent %s IMPORTED successfully' % version if sucsess else 'Failed to import python-libtorrent!' -dialog.ok('Libtorrent','OS:'+p['os']+' arch:'+p['arch'], line2) +line2 = 'python-libtorrent %s IMPORTED successfully' % version if sucsess else 'Failed to import python-libtorrent!' +dialog.ok('Libtorrent', 'OS:' + p['os'] + ' arch:' + p['arch'] + '\n' + line2) __settings__ = xbmcaddon.Addon(id='script.module.libtorrent') __language__ = __settings__.getLocalizedString -if __settings__.getSetting('ask_dirname')=='true': - set_dirname=__settings__.getSetting('dirname') - __settings__.setSetting('ask_dirname','false') - keyboard = xbmc.Keyboard(set_dirname, __language__(1002)) +if __settings__.getSetting('ask_dirname') == 'true': + set_dirname = __settings__.getSetting('dirname') + __settings__.setSetting('ask_dirname', 'false') + keyboard = xbmc.Keyboard(set_dirname, __language__(401002)) keyboard.doModal() path_keyboard = keyboard.getText() if path_keyboard and keyboard.isConfirmed(): - __settings__.setSetting('dirname', path_keyboard) \ No newline at end of file + __settings__.setSetting('dirname', path_keyboard) diff --git a/python_libtorrent/__init__.py b/python_libtorrent/__init__.py index 5fd8419..ddcb44f 100644 --- a/python_libtorrent/__init__.py +++ b/python_libtorrent/__init__.py @@ -1,5 +1,5 @@ #-*- coding: utf-8 -*- -''' +""" python-libtorrent for Kodi (script.module.libtorrent) Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman @@ -21,4 +21,4 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' \ No newline at end of file +""" \ No newline at end of file diff --git a/python_libtorrent/android_armv7/0.16.19/__init__.py b/python_libtorrent/android_armv7/0.16.19/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_armv7/0.16.19/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_armv7/0.16.19/libtorrent.so.size.txt b/python_libtorrent/android_armv7/0.16.19/libtorrent.so.size.txt deleted file mode 100644 index 84e6fea..0000000 --- a/python_libtorrent/android_armv7/0.16.19/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6804840 \ No newline at end of file diff --git a/python_libtorrent/android_armv7/0.16.19/libtorrent.so.zip b/python_libtorrent/android_armv7/0.16.19/libtorrent.so.zip deleted file mode 100644 index 02ff53c..0000000 Binary files a/python_libtorrent/android_armv7/0.16.19/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_armv7/1.0.6/__init__.py b/python_libtorrent/android_armv7/1.0.6/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_armv7/1.0.6/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_armv7/1.0.6/libtorrent.so.size.txt b/python_libtorrent/android_armv7/1.0.6/libtorrent.so.size.txt deleted file mode 100644 index 6de27f9..0000000 --- a/python_libtorrent/android_armv7/1.0.6/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6545732 \ No newline at end of file diff --git a/python_libtorrent/android_armv7/1.0.6/libtorrent.so.zip b/python_libtorrent/android_armv7/1.0.6/libtorrent.so.zip deleted file mode 100644 index 9db8ba7..0000000 Binary files a/python_libtorrent/android_armv7/1.0.6/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_armv7/1.0.7/__init__.py b/python_libtorrent/android_armv7/1.0.7/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_armv7/1.0.7/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_armv7/1.0.7/libtorrent.so.size.txt b/python_libtorrent/android_armv7/1.0.7/libtorrent.so.size.txt deleted file mode 100644 index 2f7afd2..0000000 --- a/python_libtorrent/android_armv7/1.0.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6519704 \ No newline at end of file diff --git a/python_libtorrent/android_armv7/1.0.7/libtorrent.so.zip b/python_libtorrent/android_armv7/1.0.7/libtorrent.so.zip deleted file mode 100644 index dc18c98..0000000 Binary files a/python_libtorrent/android_armv7/1.0.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_armv7/1.0.8/__init__.py b/python_libtorrent/android_armv7/1.0.8/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_armv7/1.0.8/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_armv7/1.0.8/libtorrent.so.size.txt b/python_libtorrent/android_armv7/1.0.8/libtorrent.so.size.txt deleted file mode 100644 index fce8b95..0000000 --- a/python_libtorrent/android_armv7/1.0.8/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6513752 \ No newline at end of file diff --git a/python_libtorrent/android_armv7/1.0.8/libtorrent.so.zip b/python_libtorrent/android_armv7/1.0.8/libtorrent.so.zip deleted file mode 100644 index db652e9..0000000 Binary files a/python_libtorrent/android_armv7/1.0.8/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_armv7/1.0.9/__init__.py b/python_libtorrent/android_armv7/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_armv7/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_armv7/1.0.9/libtorrent.so.size.txt b/python_libtorrent/android_armv7/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index 3611923..0000000 --- a/python_libtorrent/android_armv7/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6518156 \ No newline at end of file diff --git a/python_libtorrent/android_armv7/1.0.9/libtorrent.so.zip b/python_libtorrent/android_armv7/1.0.9/libtorrent.so.zip deleted file mode 100644 index ae9aefc..0000000 Binary files a/python_libtorrent/android_armv7/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_armv7/1.1.0/__init__.py b/python_libtorrent/android_armv7/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_armv7/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_armv7/1.1.0/libtorrent.so.size.txt b/python_libtorrent/android_armv7/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index 5610ac1..0000000 --- a/python_libtorrent/android_armv7/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -4608320 \ No newline at end of file diff --git a/python_libtorrent/android_armv7/1.1.0/libtorrent.so.zip b/python_libtorrent/android_armv7/1.1.0/libtorrent.so.zip deleted file mode 100644 index eed565c..0000000 Binary files a/python_libtorrent/android_armv7/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_armv7/1.1.1/__init__.py b/python_libtorrent/android_armv7/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_armv7/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_armv7/1.1.1/libtorrent.so.size.txt b/python_libtorrent/android_armv7/1.1.1/libtorrent.so.size.txt deleted file mode 100644 index cc84d96..0000000 --- a/python_libtorrent/android_armv7/1.1.1/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -4628960 \ No newline at end of file diff --git a/python_libtorrent/android_armv7/1.1.1/libtorrent.so.zip b/python_libtorrent/android_armv7/1.1.1/libtorrent.so.zip deleted file mode 100644 index bb500b9..0000000 Binary files a/python_libtorrent/android_armv7/1.1.1/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_x86/0.16.19/__init__.py b/python_libtorrent/android_x86/0.16.19/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_x86/0.16.19/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_x86/0.16.19/libtorrent.so.size.txt b/python_libtorrent/android_x86/0.16.19/libtorrent.so.size.txt deleted file mode 100644 index 559db63..0000000 --- a/python_libtorrent/android_x86/0.16.19/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -7145572 \ No newline at end of file diff --git a/python_libtorrent/android_x86/0.16.19/libtorrent.so.zip b/python_libtorrent/android_x86/0.16.19/libtorrent.so.zip deleted file mode 100644 index 8c27b33..0000000 Binary files a/python_libtorrent/android_x86/0.16.19/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_x86/1.0.6/__init__.py b/python_libtorrent/android_x86/1.0.6/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_x86/1.0.6/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_x86/1.0.6/libtorrent.so.size.txt b/python_libtorrent/android_x86/1.0.6/libtorrent.so.size.txt deleted file mode 100644 index 4f5d95f..0000000 --- a/python_libtorrent/android_x86/1.0.6/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6921524 \ No newline at end of file diff --git a/python_libtorrent/android_x86/1.0.6/libtorrent.so.zip b/python_libtorrent/android_x86/1.0.6/libtorrent.so.zip deleted file mode 100644 index bb15b14..0000000 Binary files a/python_libtorrent/android_x86/1.0.6/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_x86/1.0.7/__init__.py b/python_libtorrent/android_x86/1.0.7/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_x86/1.0.7/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_x86/1.0.7/libtorrent.so.size.txt b/python_libtorrent/android_x86/1.0.7/libtorrent.so.size.txt deleted file mode 100644 index 623c5ec..0000000 --- a/python_libtorrent/android_x86/1.0.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6890380 \ No newline at end of file diff --git a/python_libtorrent/android_x86/1.0.7/libtorrent.so.zip b/python_libtorrent/android_x86/1.0.7/libtorrent.so.zip deleted file mode 100644 index 61e0d0e..0000000 Binary files a/python_libtorrent/android_x86/1.0.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_x86/1.0.8/__init__.py b/python_libtorrent/android_x86/1.0.8/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_x86/1.0.8/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_x86/1.0.8/libtorrent.so.size.txt b/python_libtorrent/android_x86/1.0.8/libtorrent.so.size.txt deleted file mode 100644 index 4ae02ff..0000000 --- a/python_libtorrent/android_x86/1.0.8/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6889512 \ No newline at end of file diff --git a/python_libtorrent/android_x86/1.0.8/libtorrent.so.zip b/python_libtorrent/android_x86/1.0.8/libtorrent.so.zip deleted file mode 100644 index cda808f..0000000 Binary files a/python_libtorrent/android_x86/1.0.8/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_x86/1.0.9/__init__.py b/python_libtorrent/android_x86/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_x86/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_x86/1.0.9/libtorrent.so.size.txt b/python_libtorrent/android_x86/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index ebea396..0000000 --- a/python_libtorrent/android_x86/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6889548 \ No newline at end of file diff --git a/python_libtorrent/android_x86/1.0.9/libtorrent.so.zip b/python_libtorrent/android_x86/1.0.9/libtorrent.so.zip deleted file mode 100644 index 50dd77a..0000000 Binary files a/python_libtorrent/android_x86/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_x86/1.1.0/__init__.py b/python_libtorrent/android_x86/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_x86/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_x86/1.1.0/libtorrent.so.size.txt b/python_libtorrent/android_x86/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index e29817f..0000000 --- a/python_libtorrent/android_x86/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -5369280 \ No newline at end of file diff --git a/python_libtorrent/android_x86/1.1.0/libtorrent.so.zip b/python_libtorrent/android_x86/1.1.0/libtorrent.so.zip deleted file mode 100644 index b6385d3..0000000 Binary files a/python_libtorrent/android_x86/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/android_x86/1.1.1/__init__.py b/python_libtorrent/android_x86/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/android_x86/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/android_x86/1.1.1/libtorrent.so.size.txt b/python_libtorrent/android_x86/1.1.1/libtorrent.so.size.txt deleted file mode 100644 index 87c887a..0000000 --- a/python_libtorrent/android_x86/1.1.1/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -5393984 \ No newline at end of file diff --git a/python_libtorrent/android_x86/1.1.1/libtorrent.so.zip b/python_libtorrent/android_x86/1.1.1/libtorrent.so.zip deleted file mode 100644 index 38839cc..0000000 Binary files a/python_libtorrent/android_x86/1.1.1/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/darwin/0.16.19/__init__.py b/python_libtorrent/darwin/0.16.19/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/darwin/0.16.19/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/darwin/0.16.19/libtorrent.so.size.txt b/python_libtorrent/darwin/0.16.19/libtorrent.so.size.txt deleted file mode 100644 index f36331b..0000000 --- a/python_libtorrent/darwin/0.16.19/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -10425648 \ No newline at end of file diff --git a/python_libtorrent/darwin/0.16.19/libtorrent.so.zip b/python_libtorrent/darwin/0.16.19/libtorrent.so.zip deleted file mode 100644 index 56f086d..0000000 Binary files a/python_libtorrent/darwin/0.16.19/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/darwin/1.0.9/__init__.py b/python_libtorrent/darwin/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/darwin/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/darwin/1.0.9/libtorrent.so.size.txt b/python_libtorrent/darwin/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index 39bbc11..0000000 --- a/python_libtorrent/darwin/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3578388 \ No newline at end of file diff --git a/python_libtorrent/darwin/1.0.9/libtorrent.so.zip b/python_libtorrent/darwin/1.0.9/libtorrent.so.zip deleted file mode 100644 index 4d1c88a..0000000 Binary files a/python_libtorrent/darwin/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/darwin/1.1.0/__init__.py b/python_libtorrent/darwin/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/darwin/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/darwin/1.1.0/libtorrent.so.size.txt b/python_libtorrent/darwin/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index ffcb02f..0000000 --- a/python_libtorrent/darwin/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -5292640 \ No newline at end of file diff --git a/python_libtorrent/darwin/1.1.0/libtorrent.so.zip b/python_libtorrent/darwin/1.1.0/libtorrent.so.zip deleted file mode 100644 index 7da2dbd..0000000 Binary files a/python_libtorrent/darwin/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/darwin/1.1.1/__init__.py b/python_libtorrent/darwin/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/darwin/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/darwin/1.1.1/libtorrent.so.size.txt b/python_libtorrent/darwin/1.1.1/libtorrent.so.size.txt deleted file mode 100644 index 8b51a1f..0000000 --- a/python_libtorrent/darwin/1.1.1/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -5331516 \ No newline at end of file diff --git a/python_libtorrent/darwin/1.1.1/libtorrent.so.zip b/python_libtorrent/darwin/1.1.1/libtorrent.so.zip deleted file mode 100644 index 06eeab4..0000000 Binary files a/python_libtorrent/darwin/1.1.1/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/ios_arm/1.0.7/__init__.py b/python_libtorrent/ios_arm/1.0.7/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/ios_arm/1.0.7/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/ios_arm/1.0.7/libtorrent.so.size.txt b/python_libtorrent/ios_arm/1.0.7/libtorrent.so.size.txt deleted file mode 100644 index 7ab22f2..0000000 --- a/python_libtorrent/ios_arm/1.0.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -8834480 \ No newline at end of file diff --git a/python_libtorrent/ios_arm/1.0.7/libtorrent.so.zip b/python_libtorrent/ios_arm/1.0.7/libtorrent.so.zip deleted file mode 100644 index 608d343..0000000 Binary files a/python_libtorrent/ios_arm/1.0.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/ios_arm/1.0.8/__init__.py b/python_libtorrent/ios_arm/1.0.8/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/ios_arm/1.0.8/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/ios_arm/1.0.8/libtorrent.so.size.txt b/python_libtorrent/ios_arm/1.0.8/libtorrent.so.size.txt deleted file mode 100644 index 7fc5097..0000000 --- a/python_libtorrent/ios_arm/1.0.8/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -8779608 \ No newline at end of file diff --git a/python_libtorrent/ios_arm/1.0.8/libtorrent.so.zip b/python_libtorrent/ios_arm/1.0.8/libtorrent.so.zip deleted file mode 100644 index a52cfdf..0000000 Binary files a/python_libtorrent/ios_arm/1.0.8/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/ios_arm/1.0.9/__init__.py b/python_libtorrent/ios_arm/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/ios_arm/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/ios_arm/1.0.9/libtorrent.so.size.txt b/python_libtorrent/ios_arm/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index 3fdc1bf..0000000 --- a/python_libtorrent/ios_arm/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -8831856 \ No newline at end of file diff --git a/python_libtorrent/ios_arm/1.0.9/libtorrent.so.zip b/python_libtorrent/ios_arm/1.0.9/libtorrent.so.zip deleted file mode 100644 index 8d0e354..0000000 Binary files a/python_libtorrent/ios_arm/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/ios_arm/1.1.1/__init__.py b/python_libtorrent/ios_arm/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/ios_arm/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/ios_arm/1.1.1/libtorrent.so.size.txt b/python_libtorrent/ios_arm/1.1.1/libtorrent.so.size.txt deleted file mode 100644 index bee1908..0000000 --- a/python_libtorrent/ios_arm/1.1.1/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3439420 \ No newline at end of file diff --git a/python_libtorrent/ios_arm/1.1.1/libtorrent.so.zip b/python_libtorrent/ios_arm/1.1.1/libtorrent.so.zip deleted file mode 100644 index 92d7682..0000000 Binary files a/python_libtorrent/ios_arm/1.1.1/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_aarch64_ucs2/1.1.0/__init__.py b/python_libtorrent/linux_aarch64_ucs2/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_aarch64_ucs2/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_aarch64_ucs2/1.1.0/libtorrent.so.size.txt b/python_libtorrent/linux_aarch64_ucs2/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index 8bf018b..0000000 --- a/python_libtorrent/linux_aarch64_ucs2/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -5191944 \ No newline at end of file diff --git a/python_libtorrent/linux_aarch64_ucs2/1.1.0/libtorrent.so.zip b/python_libtorrent/linux_aarch64_ucs2/1.1.0/libtorrent.so.zip deleted file mode 100644 index 496e934..0000000 Binary files a/python_libtorrent/linux_aarch64_ucs2/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_aarch64_ucs2/1.2.7/libtorrent.so.size.txt b/python_libtorrent/linux_aarch64_ucs2/1.2.7/libtorrent.so.size.txt deleted file mode 100644 index 2ad0123..0000000 --- a/python_libtorrent/linux_aarch64_ucs2/1.2.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -4318808 \ No newline at end of file diff --git a/python_libtorrent/linux_aarch64_ucs2/1.2.7/libtorrent.so.zip b/python_libtorrent/linux_aarch64_ucs2/1.2.7/libtorrent.so.zip deleted file mode 100644 index ef3d778..0000000 Binary files a/python_libtorrent/linux_aarch64_ucs2/1.2.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_aarch64_ucs4/1.1.0/__init__.py b/python_libtorrent/linux_aarch64_ucs4/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_aarch64_ucs4/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_aarch64_ucs4/1.1.0/libtorrent.so.size.txt b/python_libtorrent/linux_aarch64_ucs4/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index 8bf018b..0000000 --- a/python_libtorrent/linux_aarch64_ucs4/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -5191944 \ No newline at end of file diff --git a/python_libtorrent/linux_aarch64_ucs4/1.1.0/libtorrent.so.zip b/python_libtorrent/linux_aarch64_ucs4/1.1.0/libtorrent.so.zip deleted file mode 100644 index 645a029..0000000 Binary files a/python_libtorrent/linux_aarch64_ucs4/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_aarch64_ucs4/1.1.1/__init__.py b/python_libtorrent/linux_aarch64_ucs4/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_aarch64_ucs4/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_aarch64_ucs4/1.1.1/libtorrent.so.size.txt b/python_libtorrent/linux_aarch64_ucs4/1.1.1/libtorrent.so.size.txt deleted file mode 100644 index ef8c564..0000000 --- a/python_libtorrent/linux_aarch64_ucs4/1.1.1/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2884768 \ No newline at end of file diff --git a/python_libtorrent/linux_aarch64_ucs4/1.1.1/libtorrent.so.zip b/python_libtorrent/linux_aarch64_ucs4/1.1.1/libtorrent.so.zip deleted file mode 100644 index 0f95d32..0000000 Binary files a/python_libtorrent/linux_aarch64_ucs4/1.1.1/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_aarch64_ucs4/1.1.14/libtorrent.so.size.txt b/python_libtorrent/linux_aarch64_ucs4/1.1.14/libtorrent.so.size.txt new file mode 100644 index 0000000..5ce4b55 --- /dev/null +++ b/python_libtorrent/linux_aarch64_ucs4/1.1.14/libtorrent.so.size.txt @@ -0,0 +1 @@ +10487144 diff --git a/python_libtorrent/linux_aarch64_ucs4/1.1.14/libtorrent.so.zip b/python_libtorrent/linux_aarch64_ucs4/1.1.14/libtorrent.so.zip new file mode 100644 index 0000000..66323f4 Binary files /dev/null and b/python_libtorrent/linux_aarch64_ucs4/1.1.14/libtorrent.so.zip differ diff --git a/python_libtorrent/linux_aarch64_ucs4/1.2.7/__init__.py b/python_libtorrent/linux_aarch64_ucs4/1.2.7/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/python_libtorrent/linux_aarch64_ucs4/1.2.7/libtorrent.so.size.txt b/python_libtorrent/linux_aarch64_ucs4/1.2.7/libtorrent.so.size.txt deleted file mode 100644 index 2ad0123..0000000 --- a/python_libtorrent/linux_aarch64_ucs4/1.2.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -4318808 \ No newline at end of file diff --git a/python_libtorrent/linux_aarch64_ucs4/1.2.7/libtorrent.so.zip b/python_libtorrent/linux_aarch64_ucs4/1.2.7/libtorrent.so.zip deleted file mode 100644 index 2224c0f..0000000 Binary files a/python_libtorrent/linux_aarch64_ucs4/1.2.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv6/0.16.19/__init__.py b/python_libtorrent/linux_armv6/0.16.19/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv6/0.16.19/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv6/0.16.19/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/0.16.19/libtorrent.so.size.txt deleted file mode 100644 index 9d285b2..0000000 --- a/python_libtorrent/linux_armv6/0.16.19/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2133072 \ No newline at end of file diff --git a/python_libtorrent/linux_armv6/0.16.19/libtorrent.so.zip b/python_libtorrent/linux_armv6/0.16.19/libtorrent.so.zip deleted file mode 100644 index a8ac205..0000000 Binary files a/python_libtorrent/linux_armv6/0.16.19/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv6/1.0.11/__init__.py b/python_libtorrent/linux_armv6/1.0.11/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv6/1.0.11/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv6/1.0.11/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/1.0.11/libtorrent.so.size.txt deleted file mode 100644 index 9a1d600..0000000 --- a/python_libtorrent/linux_armv6/1.0.11/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2286476 \ No newline at end of file diff --git a/python_libtorrent/linux_armv6/1.0.11/libtorrent.so.zip b/python_libtorrent/linux_armv6/1.0.11/libtorrent.so.zip deleted file mode 100644 index c6ed450..0000000 Binary files a/python_libtorrent/linux_armv6/1.0.11/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv6/1.0.6/__init__.py b/python_libtorrent/linux_armv6/1.0.6/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv6/1.0.6/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv6/1.0.6/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/1.0.6/libtorrent.so.size.txt deleted file mode 100644 index 62a4af3..0000000 --- a/python_libtorrent/linux_armv6/1.0.6/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -1979232 \ No newline at end of file diff --git a/python_libtorrent/linux_armv6/1.0.6/libtorrent.so.zip b/python_libtorrent/linux_armv6/1.0.6/libtorrent.so.zip deleted file mode 100644 index 83e7d7a..0000000 Binary files a/python_libtorrent/linux_armv6/1.0.6/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv6/1.0.7/__init__.py b/python_libtorrent/linux_armv6/1.0.7/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv6/1.0.7/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv6/1.0.7/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/1.0.7/libtorrent.so.size.txt deleted file mode 100644 index 5ff46c8..0000000 --- a/python_libtorrent/linux_armv6/1.0.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2286424 \ No newline at end of file diff --git a/python_libtorrent/linux_armv6/1.0.7/libtorrent.so.zip b/python_libtorrent/linux_armv6/1.0.7/libtorrent.so.zip deleted file mode 100644 index 185fe8a..0000000 Binary files a/python_libtorrent/linux_armv6/1.0.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv6/1.0.9/__init__.py b/python_libtorrent/linux_armv6/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv6/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv6/1.0.9/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index 5ff46c8..0000000 --- a/python_libtorrent/linux_armv6/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2286424 \ No newline at end of file diff --git a/python_libtorrent/linux_armv6/1.0.9/libtorrent.so.zip b/python_libtorrent/linux_armv6/1.0.9/libtorrent.so.zip deleted file mode 100644 index 8befff4..0000000 Binary files a/python_libtorrent/linux_armv6/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv6/1.1.0/__init__.py b/python_libtorrent/linux_armv6/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv6/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv6/1.1.0/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index 56d0afe..0000000 --- a/python_libtorrent/linux_armv6/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2388664 \ No newline at end of file diff --git a/python_libtorrent/linux_armv6/1.1.0/libtorrent.so.zip b/python_libtorrent/linux_armv6/1.1.0/libtorrent.so.zip deleted file mode 100644 index 3e9c7ea..0000000 Binary files a/python_libtorrent/linux_armv6/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv6/1.1.1/__init__.py b/python_libtorrent/linux_armv6/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv6/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv6/1.1.1/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/1.1.1/libtorrent.so.size.txt deleted file mode 100644 index e97c628..0000000 --- a/python_libtorrent/linux_armv6/1.1.1/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2577640 \ No newline at end of file diff --git a/python_libtorrent/linux_armv6/1.1.1/libtorrent.so.zip b/python_libtorrent/linux_armv6/1.1.1/libtorrent.so.zip deleted file mode 100644 index 2c8c751..0000000 Binary files a/python_libtorrent/linux_armv6/1.1.1/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv6/1.1.14/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/1.1.14/libtorrent.so.size.txt new file mode 100644 index 0000000..b3a8745 --- /dev/null +++ b/python_libtorrent/linux_armv6/1.1.14/libtorrent.so.size.txt @@ -0,0 +1 @@ +9063628 diff --git a/python_libtorrent/linux_armv6/1.1.14/libtorrent.so.zip b/python_libtorrent/linux_armv6/1.1.14/libtorrent.so.zip new file mode 100644 index 0000000..ad2c7da Binary files /dev/null and b/python_libtorrent/linux_armv6/1.1.14/libtorrent.so.zip differ diff --git a/python_libtorrent/linux_armv6/1.1.6/__init__.py b/python_libtorrent/linux_armv6/1.1.6/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv6/1.1.6/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv6/1.1.6/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/1.1.6/libtorrent.so.size.txt deleted file mode 100644 index 8df8114..0000000 --- a/python_libtorrent/linux_armv6/1.1.6/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3630144 \ No newline at end of file diff --git a/python_libtorrent/linux_armv6/1.1.6/libtorrent.so.zip b/python_libtorrent/linux_armv6/1.1.6/libtorrent.so.zip deleted file mode 100644 index 68ba118..0000000 Binary files a/python_libtorrent/linux_armv6/1.1.6/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv6/1.1.7/__init__.py b/python_libtorrent/linux_armv6/1.1.7/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv6/1.1.7/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv6/1.1.7/libtorrent.so.size.txt b/python_libtorrent/linux_armv6/1.1.7/libtorrent.so.size.txt deleted file mode 100644 index 0e905c9..0000000 --- a/python_libtorrent/linux_armv6/1.1.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3634324 \ No newline at end of file diff --git a/python_libtorrent/linux_armv6/1.1.7/libtorrent.so.zip b/python_libtorrent/linux_armv6/1.1.7/libtorrent.so.zip deleted file mode 100644 index d9b8da8..0000000 Binary files a/python_libtorrent/linux_armv6/1.1.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv7/0.16.19/__init__.py b/python_libtorrent/linux_armv7/0.16.19/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv7/0.16.19/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv7/0.16.19/libtorrent.so.size.txt b/python_libtorrent/linux_armv7/0.16.19/libtorrent.so.size.txt deleted file mode 100644 index 375fc94..0000000 --- a/python_libtorrent/linux_armv7/0.16.19/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -1892840 \ No newline at end of file diff --git a/python_libtorrent/linux_armv7/0.16.19/libtorrent.so.zip b/python_libtorrent/linux_armv7/0.16.19/libtorrent.so.zip deleted file mode 100644 index 61178b7..0000000 Binary files a/python_libtorrent/linux_armv7/0.16.19/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv7/1.0.6/__init__.py b/python_libtorrent/linux_armv7/1.0.6/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv7/1.0.6/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv7/1.0.6/libtorrent.so.size.txt b/python_libtorrent/linux_armv7/1.0.6/libtorrent.so.size.txt deleted file mode 100644 index 98acdd6..0000000 --- a/python_libtorrent/linux_armv7/1.0.6/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2048268 \ No newline at end of file diff --git a/python_libtorrent/linux_armv7/1.0.6/libtorrent.so.zip b/python_libtorrent/linux_armv7/1.0.6/libtorrent.so.zip deleted file mode 100644 index db5c2cf..0000000 Binary files a/python_libtorrent/linux_armv7/1.0.6/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv7/1.0.7/__init__.py b/python_libtorrent/linux_armv7/1.0.7/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv7/1.0.7/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv7/1.0.7/libtorrent.so.size.txt b/python_libtorrent/linux_armv7/1.0.7/libtorrent.so.size.txt deleted file mode 100644 index 7cdb477..0000000 --- a/python_libtorrent/linux_armv7/1.0.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2093128 \ No newline at end of file diff --git a/python_libtorrent/linux_armv7/1.0.7/libtorrent.so.zip b/python_libtorrent/linux_armv7/1.0.7/libtorrent.so.zip deleted file mode 100644 index 4601495..0000000 Binary files a/python_libtorrent/linux_armv7/1.0.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv7/1.0.9/__init__.py b/python_libtorrent/linux_armv7/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv7/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv7/1.0.9/libtorrent.so.size.txt b/python_libtorrent/linux_armv7/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index bb85f14..0000000 --- a/python_libtorrent/linux_armv7/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2043172 \ No newline at end of file diff --git a/python_libtorrent/linux_armv7/1.0.9/libtorrent.so.zip b/python_libtorrent/linux_armv7/1.0.9/libtorrent.so.zip deleted file mode 100644 index 95a3ece..0000000 Binary files a/python_libtorrent/linux_armv7/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv7/1.1.0/__init__.py b/python_libtorrent/linux_armv7/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv7/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv7/1.1.0/libtorrent.so.size.txt b/python_libtorrent/linux_armv7/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index 0866378..0000000 --- a/python_libtorrent/linux_armv7/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2662156 \ No newline at end of file diff --git a/python_libtorrent/linux_armv7/1.1.0/libtorrent.so.zip b/python_libtorrent/linux_armv7/1.1.0/libtorrent.so.zip deleted file mode 100644 index 99f76d9..0000000 Binary files a/python_libtorrent/linux_armv7/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv7/1.1.1/__init__.py b/python_libtorrent/linux_armv7/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_armv7/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_armv7/1.1.1/libtorrent.so.size.txt b/python_libtorrent/linux_armv7/1.1.1/libtorrent.so.size.txt deleted file mode 100644 index 4a58671..0000000 --- a/python_libtorrent/linux_armv7/1.1.1/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -2674612 \ No newline at end of file diff --git a/python_libtorrent/linux_armv7/1.1.1/libtorrent.so.zip b/python_libtorrent/linux_armv7/1.1.1/libtorrent.so.zip deleted file mode 100644 index 3aff8d9..0000000 Binary files a/python_libtorrent/linux_armv7/1.1.1/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_armv7/1.1.14/libtorrent.so.size.txt b/python_libtorrent/linux_armv7/1.1.14/libtorrent.so.size.txt new file mode 100644 index 0000000..acf6a90 --- /dev/null +++ b/python_libtorrent/linux_armv7/1.1.14/libtorrent.so.size.txt @@ -0,0 +1 @@ +7175372 diff --git a/python_libtorrent/linux_armv7/1.1.14/libtorrent.so.zip b/python_libtorrent/linux_armv7/1.1.14/libtorrent.so.zip new file mode 100644 index 0000000..261e41d Binary files /dev/null and b/python_libtorrent/linux_armv7/1.1.14/libtorrent.so.zip differ diff --git a/python_libtorrent/linux_mipsel_ucs2/1.0.9/__init__.py b/python_libtorrent/linux_mipsel_ucs2/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_mipsel_ucs2/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_mipsel_ucs2/1.0.9/libtorrent.so.size.txt b/python_libtorrent/linux_mipsel_ucs2/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index 314f7bd..0000000 --- a/python_libtorrent/linux_mipsel_ucs2/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -4596396 \ No newline at end of file diff --git a/python_libtorrent/linux_mipsel_ucs2/1.0.9/libtorrent.so.zip b/python_libtorrent/linux_mipsel_ucs2/1.0.9/libtorrent.so.zip deleted file mode 100644 index e1b3a5f..0000000 Binary files a/python_libtorrent/linux_mipsel_ucs2/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_mipsel_ucs2/1.1.0/__init__.py b/python_libtorrent/linux_mipsel_ucs2/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_mipsel_ucs2/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_mipsel_ucs2/1.1.0/libtorrent.so.size.txt b/python_libtorrent/linux_mipsel_ucs2/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index faeab6c..0000000 --- a/python_libtorrent/linux_mipsel_ucs2/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6325240 \ No newline at end of file diff --git a/python_libtorrent/linux_mipsel_ucs2/1.1.0/libtorrent.so.zip b/python_libtorrent/linux_mipsel_ucs2/1.1.0/libtorrent.so.zip deleted file mode 100644 index 45bd6ef..0000000 Binary files a/python_libtorrent/linux_mipsel_ucs2/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_mipsel_ucs4/1.0.9/__init__.py b/python_libtorrent/linux_mipsel_ucs4/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_mipsel_ucs4/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_mipsel_ucs4/1.0.9/libtorrent.so.size.txt b/python_libtorrent/linux_mipsel_ucs4/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index 476b9bf..0000000 --- a/python_libtorrent/linux_mipsel_ucs4/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -4598636 \ No newline at end of file diff --git a/python_libtorrent/linux_mipsel_ucs4/1.0.9/libtorrent.so.zip b/python_libtorrent/linux_mipsel_ucs4/1.0.9/libtorrent.so.zip deleted file mode 100644 index bf94aef..0000000 Binary files a/python_libtorrent/linux_mipsel_ucs4/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_mipsel_ucs4/1.1.0/__init__.py b/python_libtorrent/linux_mipsel_ucs4/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_mipsel_ucs4/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_mipsel_ucs4/1.1.0/libtorrent.so.size.txt b/python_libtorrent/linux_mipsel_ucs4/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index faeab6c..0000000 --- a/python_libtorrent/linux_mipsel_ucs4/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6325240 \ No newline at end of file diff --git a/python_libtorrent/linux_mipsel_ucs4/1.1.0/libtorrent.so.zip b/python_libtorrent/linux_mipsel_ucs4/1.1.0/libtorrent.so.zip deleted file mode 100644 index 20eda01..0000000 Binary files a/python_libtorrent/linux_mipsel_ucs4/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86/0.16.19/__init__.py b/python_libtorrent/linux_x86/0.16.19/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86/0.16.19/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86/0.16.19/libtorrent.so.size.txt b/python_libtorrent/linux_x86/0.16.19/libtorrent.so.size.txt deleted file mode 100644 index a346659..0000000 --- a/python_libtorrent/linux_x86/0.16.19/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6257605 \ No newline at end of file diff --git a/python_libtorrent/linux_x86/0.16.19/libtorrent.so.zip b/python_libtorrent/linux_x86/0.16.19/libtorrent.so.zip deleted file mode 100644 index e258d9b..0000000 Binary files a/python_libtorrent/linux_x86/0.16.19/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86/1.0.6/__init__.py b/python_libtorrent/linux_x86/1.0.6/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86/1.0.6/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86/1.0.6/libtorrent.so.size.txt b/python_libtorrent/linux_x86/1.0.6/libtorrent.so.size.txt deleted file mode 100644 index 3e74d11..0000000 --- a/python_libtorrent/linux_x86/1.0.6/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3517944 \ No newline at end of file diff --git a/python_libtorrent/linux_x86/1.0.6/libtorrent.so.zip b/python_libtorrent/linux_x86/1.0.6/libtorrent.so.zip deleted file mode 100644 index 284c363..0000000 Binary files a/python_libtorrent/linux_x86/1.0.6/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86/1.0.7/__init__.py b/python_libtorrent/linux_x86/1.0.7/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86/1.0.7/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86/1.0.7/libtorrent.so.size.txt b/python_libtorrent/linux_x86/1.0.7/libtorrent.so.size.txt deleted file mode 100644 index c7e345b..0000000 --- a/python_libtorrent/linux_x86/1.0.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3544068 \ No newline at end of file diff --git a/python_libtorrent/linux_x86/1.0.7/libtorrent.so.zip b/python_libtorrent/linux_x86/1.0.7/libtorrent.so.zip deleted file mode 100644 index 2b65283..0000000 Binary files a/python_libtorrent/linux_x86/1.0.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86/1.0.9/__init__.py b/python_libtorrent/linux_x86/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86/1.0.9/libtorrent.so.size.txt b/python_libtorrent/linux_x86/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index 5b7c9ab..0000000 --- a/python_libtorrent/linux_x86/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3239792 \ No newline at end of file diff --git a/python_libtorrent/linux_x86/1.0.9/libtorrent.so.zip b/python_libtorrent/linux_x86/1.0.9/libtorrent.so.zip deleted file mode 100644 index 8af60f1..0000000 Binary files a/python_libtorrent/linux_x86/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86/1.1.0/__init__.py b/python_libtorrent/linux_x86/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86/1.1.0/libtorrent.so.size.txt b/python_libtorrent/linux_x86/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index 1830372..0000000 --- a/python_libtorrent/linux_x86/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -4601280 \ No newline at end of file diff --git a/python_libtorrent/linux_x86/1.1.0/libtorrent.so.zip b/python_libtorrent/linux_x86/1.1.0/libtorrent.so.zip deleted file mode 100644 index 6dd875d..0000000 Binary files a/python_libtorrent/linux_x86/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86/1.1.1/__init__.py b/python_libtorrent/linux_x86/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86/1.1.1/libtorrent.so.size.txt b/python_libtorrent/linux_x86/1.1.1/libtorrent.so.size.txt deleted file mode 100644 index 9f9b66e..0000000 --- a/python_libtorrent/linux_x86/1.1.1/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6652780 \ No newline at end of file diff --git a/python_libtorrent/linux_x86/1.1.1/libtorrent.so.zip b/python_libtorrent/linux_x86/1.1.1/libtorrent.so.zip deleted file mode 100644 index 4b16031..0000000 Binary files a/python_libtorrent/linux_x86/1.1.1/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86/1.1.14/libtorrent.so.size.txt b/python_libtorrent/linux_x86/1.1.14/libtorrent.so.size.txt new file mode 100644 index 0000000..955cc25 --- /dev/null +++ b/python_libtorrent/linux_x86/1.1.14/libtorrent.so.size.txt @@ -0,0 +1 @@ +11220000 diff --git a/python_libtorrent/linux_x86/1.1.14/libtorrent.so.zip b/python_libtorrent/linux_x86/1.1.14/libtorrent.so.zip new file mode 100644 index 0000000..357a8d5 Binary files /dev/null and b/python_libtorrent/linux_x86/1.1.14/libtorrent.so.zip differ diff --git a/python_libtorrent/linux_x86_64/0.16.19/__init__.py b/python_libtorrent/linux_x86_64/0.16.19/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86_64/0.16.19/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86_64/0.16.19/libtorrent.so.size.txt b/python_libtorrent/linux_x86_64/0.16.19/libtorrent.so.size.txt deleted file mode 100644 index 4b476b5..0000000 --- a/python_libtorrent/linux_x86_64/0.16.19/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -6620181 \ No newline at end of file diff --git a/python_libtorrent/linux_x86_64/0.16.19/libtorrent.so.zip b/python_libtorrent/linux_x86_64/0.16.19/libtorrent.so.zip deleted file mode 100644 index 2a46a52..0000000 Binary files a/python_libtorrent/linux_x86_64/0.16.19/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86_64/1.0.6/__init__.py b/python_libtorrent/linux_x86_64/1.0.6/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86_64/1.0.6/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86_64/1.0.6/libtorrent.so.size.txt b/python_libtorrent/linux_x86_64/1.0.6/libtorrent.so.size.txt deleted file mode 100644 index bd538ff..0000000 --- a/python_libtorrent/linux_x86_64/1.0.6/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3514688 \ No newline at end of file diff --git a/python_libtorrent/linux_x86_64/1.0.6/libtorrent.so.zip b/python_libtorrent/linux_x86_64/1.0.6/libtorrent.so.zip deleted file mode 100644 index b722bb3..0000000 Binary files a/python_libtorrent/linux_x86_64/1.0.6/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86_64/1.0.7/__init__.py b/python_libtorrent/linux_x86_64/1.0.7/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86_64/1.0.7/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86_64/1.0.7/libtorrent.so.size.txt b/python_libtorrent/linux_x86_64/1.0.7/libtorrent.so.size.txt deleted file mode 100644 index bea1788..0000000 --- a/python_libtorrent/linux_x86_64/1.0.7/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3576128 \ No newline at end of file diff --git a/python_libtorrent/linux_x86_64/1.0.7/libtorrent.so.zip b/python_libtorrent/linux_x86_64/1.0.7/libtorrent.so.zip deleted file mode 100644 index fc2b406..0000000 Binary files a/python_libtorrent/linux_x86_64/1.0.7/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86_64/1.0.9/__init__.py b/python_libtorrent/linux_x86_64/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86_64/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86_64/1.0.9/libtorrent.so.size.txt b/python_libtorrent/linux_x86_64/1.0.9/libtorrent.so.size.txt deleted file mode 100644 index 2469102..0000000 --- a/python_libtorrent/linux_x86_64/1.0.9/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -3290600 \ No newline at end of file diff --git a/python_libtorrent/linux_x86_64/1.0.9/libtorrent.so.zip b/python_libtorrent/linux_x86_64/1.0.9/libtorrent.so.zip deleted file mode 100644 index a1ffa76..0000000 Binary files a/python_libtorrent/linux_x86_64/1.0.9/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86_64/1.1.0/__init__.py b/python_libtorrent/linux_x86_64/1.1.0/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86_64/1.1.0/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86_64/1.1.0/libtorrent.so.size.txt b/python_libtorrent/linux_x86_64/1.1.0/libtorrent.so.size.txt deleted file mode 100644 index c66f5c3..0000000 --- a/python_libtorrent/linux_x86_64/1.1.0/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -4246184 \ No newline at end of file diff --git a/python_libtorrent/linux_x86_64/1.1.0/libtorrent.so.zip b/python_libtorrent/linux_x86_64/1.1.0/libtorrent.so.zip deleted file mode 100644 index 8ca9de6..0000000 Binary files a/python_libtorrent/linux_x86_64/1.1.0/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_x86_64/1.1.1/__init__.py b/python_libtorrent/linux_x86_64/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/linux_x86_64/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/linux_x86_64/1.1.1/libtorrent.so.size.txt b/python_libtorrent/linux_x86_64/1.1.1/libtorrent.so.size.txt deleted file mode 100644 index 53ec69f..0000000 --- a/python_libtorrent/linux_x86_64/1.1.1/libtorrent.so.size.txt +++ /dev/null @@ -1 +0,0 @@ -4263000 \ No newline at end of file diff --git a/python_libtorrent/linux_x86_64/1.1.1/libtorrent.so.zip b/python_libtorrent/linux_x86_64/1.1.1/libtorrent.so.zip deleted file mode 100644 index b2d9096..0000000 Binary files a/python_libtorrent/linux_x86_64/1.1.1/libtorrent.so.zip and /dev/null differ diff --git a/python_libtorrent/linux_aarch64_ucs2/1.2.7/__init__.py b/python_libtorrent/linux_x86_64/1.1.14/__init__.py similarity index 100% rename from python_libtorrent/linux_aarch64_ucs2/1.2.7/__init__.py rename to python_libtorrent/linux_x86_64/1.1.14/__init__.py diff --git a/python_libtorrent/linux_x86_64/1.1.14/libtorrent.so.size.txt b/python_libtorrent/linux_x86_64/1.1.14/libtorrent.so.size.txt new file mode 100644 index 0000000..0fcfd58 --- /dev/null +++ b/python_libtorrent/linux_x86_64/1.1.14/libtorrent.so.size.txt @@ -0,0 +1 @@ +11148992 diff --git a/python_libtorrent/linux_x86_64/1.1.14/libtorrent.so.zip b/python_libtorrent/linux_x86_64/1.1.14/libtorrent.so.zip new file mode 100644 index 0000000..e6ef903 Binary files /dev/null and b/python_libtorrent/linux_x86_64/1.1.14/libtorrent.so.zip differ diff --git a/python_libtorrent/platform_pulsar.py b/python_libtorrent/platform_pulsar.py index 4df87ee..f63794f 100644 --- a/python_libtorrent/platform_pulsar.py +++ b/python_libtorrent/platform_pulsar.py @@ -1,5 +1,5 @@ -#-*- coding: utf-8 -*- -''' +# -*- coding: utf-8 -*- +""" python-libtorrent for Kodi (script.module.libtorrent) Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman @@ -21,12 +21,14 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' +""" import sys import os + try: import xbmc, xbmcaddon + __settings__ = xbmcaddon.Addon(id='script.module.libtorrent') __version__ = __settings__.getAddonInfo('version') __plugin__ = __settings__.getAddonInfo('name') + " v." + __version__ @@ -34,29 +36,32 @@ except: __plugin__ = 'script.module.libtorrent' pass + def log(msg): try: - xbmc.log("### [%s]: %s" % (__plugin__,msg,), level=xbmc.LOGNOTICE ) + xbmc.log("### [%s]: %s" % (__plugin__, msg,), level=xbmc.LOGINFO) except UnicodeEncodeError: - xbmc.log("### [%s]: %s" % (__plugin__,msg.encode("utf-8", "ignore"),), level=xbmc.LOGNOTICE ) + xbmc.log("### [%s]: %s" % (__plugin__, msg.encode("utf-8", "ignore"),), level=xbmc.LOGINFO) except: try: - xbmc.log("### [%s]: %s" % (__plugin__,'ERROR LOG',), level=xbmc.LOGNOTICE ) + xbmc.log("### [%s]: %s" % (__plugin__, 'ERROR LOG',), level=xbmc.LOGINFO) except: - print msg + print(msg) + def get_libname(platform): - libname=[] + libname = [] if platform['system'] in ['darwin', 'linux_x86', 'linux_arm', 'linux_armv6', 'linux_armv7', 'linux_x86_64', 'ios_arm', 'linux_mipsel_ucs2', 'linux_mipsel_ucs4', 'linux_aarch64_ucs2', 'linux_aarch64_ucs4']: - libname=['libtorrent.so'] + libname = ['libtorrent.so'] elif platform['system'] == 'windows': - libname=['libtorrent.pyd'] + libname = ['libtorrent.pyd'] elif platform['system'] in ['android_armv7', 'android_x86']: - libname=['libtorrent.so', 'liblibtorrent.so'] + libname = ['libtorrent.so', 'liblibtorrent.so'] return libname + def get_platform(): __settings__ = xbmcaddon.Addon(id='script.module.libtorrent') __version__ = __settings__.getAddonInfo('version') @@ -65,44 +70,44 @@ def get_platform(): if __settings__.getSetting('custom_system').lower() == "true": system = int(__settings__.getSetting('set_system')) - log('USE CUSTOM SYSTEM: '+__language__(1100+system)) + log('USE CUSTOM SYSTEM: ' + __language__(401100 + system)) - ret={} + ret = {} - if system==0: + if system == 0: ret["os"] = "windows" ret["arch"] = "x86" - elif system==1: + elif system == 1: ret["os"] = "linux" ret["arch"] = "x86" - elif system==2: + elif system == 2: ret["os"] = "linux" ret["arch"] = "x64" - elif system==3: + elif system == 3: ret["os"] = "linux" ret["arch"] = "armv7" - elif system==4: + elif system == 4: ret["os"] = "linux" ret["arch"] = "armv6" - elif system==5: + elif system == 5: ret["os"] = "android" ret["arch"] = "arm" - elif system==6: + elif system == 6: ret["os"] = "android" ret["arch"] = "x86" - elif system==7: + elif system == 7: ret["os"] = "darwin" ret["arch"] = "x64" - elif system==8: + elif system == 8: ret["os"] = "ios" ret["arch"] = "arm" - elif system==9: + elif system == 9: ret["os"] = "ios" ret["arch"] = "arm" - elif system==10: + elif system == 10: ret["os"] = "linux" ret["arch"] = "mipsel_ucs2" - elif system==11: + elif system == 11: ret["os"] = "linux" ret["arch"] = "mipsel_ucs4" elif system == 12: @@ -125,7 +130,7 @@ def get_platform(): ret["arch"] = "arm" elif xbmc.getCondVisibility("system.platform.linux"): ret["os"] = "linux" - uname=os.uname()[4] + uname = os.uname()[4] if "arm" in uname: if "armv7" in uname: ret["arch"] = "armv7" @@ -137,13 +142,13 @@ def get_platform(): else: ret["arch"] = 'mipsel_ucs2' elif "aarch64" in uname: - if sys.maxint > 2147483647: #is_64bit_system + if sys.maxsize > 2147483647: # is_64bit_system if sys.maxunicode > 65536: ret["arch"] = 'aarch64_ucs4' else: ret["arch"] = 'aarch64_ucs2' else: - ret["arch"] = "armv7" #32-bit userspace + ret["arch"] = "armv7" # 32-bit userspace elif xbmc.getCondVisibility("system.platform.windows"): ret["os"] = "windows" elif xbmc.getCondVisibility("system.platform.osx"): @@ -152,9 +157,10 @@ def get_platform(): ret["os"] = "ios" ret["arch"] = "arm" - ret=get_system(ret) + ret = get_system(ret) return ret + def get_system(ret): ret["system"] = '' ret["message"] = ['', ''] @@ -176,11 +182,11 @@ def get_system(ret): ret["message"] = ['Linux has static compiled python-libtorrent included but it didn\'t work.', 'You should install it by "sudo apt-get install python-libtorrent"'] elif ret["os"] == "linux" and ("arm" in ret["arch"] or 'mips' in ret["arch"]): - ret["system"] = 'linux_'+ret["arch"] + ret["system"] = 'linux_' + ret["arch"] ret["message"] = ['As far as I know you can compile python-libtorrent for ARMv6-7.', 'You should search for "OneEvil\'s OpenELEC libtorrent" or use Ace Stream.'] elif ret["os"] == "android": - if ret["arch"]=='arm': + if ret["arch"] == 'arm': ret["system"] = 'android_armv7' else: ret["system"] = 'android_x86' diff --git a/python_libtorrent/public.py b/python_libtorrent/public.py index 46afdf0..acabd6d 100644 --- a/python_libtorrent/public.py +++ b/python_libtorrent/public.py @@ -1,5 +1,5 @@ -#-*- coding: utf-8 -*- -''' +# -*- coding: utf-8 -*- +""" python-libtorrent for Kodi (script.module.libtorrent) Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman @@ -21,63 +21,65 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' +""" import os -from platform_pulsar import get_libname +from .platform_pulsar import get_libname + class Public: - def __init__( self ): - self.platforms=[] - self.root=os.path.dirname(__file__) - for dir in os.listdir(self.root): - if os.path.isdir(os.path.join(self.root,dir)): - for subdir in os.listdir(os.path.join(self.root,dir)): - if os.path.isdir(os.path.join(self.root,dir,subdir)): - self.platforms.append({'system':dir, 'version':subdir}) + def __init__(self): + self.platforms = [] + self.root = os.path.dirname(__file__) + for dir_item in os.listdir(self.root): + if os.path.isdir(os.path.join(self.root, dir_item)): + for subdir in os.listdir(os.path.join(self.root, dir_item)): + if os.path.isdir(os.path.join(self.root, dir_item, subdir)): + self.platforms.append({'system': dir_item, 'version': subdir}) self._generate_size_file() - def _generate_size_file( self ): + def _generate_size_file(self): for platform in self.platforms: for libname in get_libname(platform): - self.libname=libname - self.platform=platform + self.libname = libname + self.platform = platform self.libdir = os.path.join(self.root, self.platform['system'], self.platform['version']) self.libpath = os.path.join(self.libdir, self.libname) - self.sizepath=self.libpath+'.size.txt' - self.zipname=self.libname+'.zip' - zippath=os.path.join(self.libdir, self.zipname) - system=platform['system']+'/'+platform['version']+'/' + self.sizepath = self.libpath + '.size.txt' + self.zipname = self.libname + '.zip' + zippath = os.path.join(self.libdir, self.zipname) + system = platform['system'] + '/' + platform['version'] + '/' if os.path.exists(self.libpath): if not os.path.exists(self.sizepath): - print system+self.libname+' NO SIZE' + print(system + self.libname + ' NO SIZE') self._makezip() elif not os.path.exists(zippath): - print system+self.libname+' NO ZIP' + print(system + self.libname + ' NO ZIP') self._makezip() else: - size=str(os.path.getsize(self.libpath)) - size_old=open( self.sizepath, "r" ).read() - if size_old!=size: - print system+self.libname+' NOT EQUAL' + size = str(os.path.getsize(self.libpath)) + size_old = open(self.sizepath, "r").read() + if size_old != size: + print(system + self.libname + ' NOT EQUAL') self._makezip() else: - print system+self.libname+' NO ACTION' + print(system + self.libname + ' NO ACTION') else: - print system+self.libname+' NO LIB' + print(system + self.libname + ' NO LIB') def _makezip(self): - open( self.sizepath, "w" ).write( str(os.path.getsize(self.libpath)) ) + open(self.sizepath, "w").write(str(os.path.getsize(self.libpath))) os.chdir(self.libdir) - os.system('del %s' % (self.zipname)) + os.system('del %s' % self.zipname) os.system('"C:\\Program Files\\7-Zip\\7z.exe" a %s.zip %s' % (self.libname, self.libname)) os.chdir(self.root) - #os.system('"C:\\Program Files\\7-Zip\\7z.exe" a %s.zip %s' % + # os.system('"C:\\Program Files\\7-Zip\\7z.exe" a %s.zip %s' % # (self.platform['system']+os.sep+self.libname, self.platform['system']+os.sep+self.libname)) -if ( __name__ == "__main__" ): + +if __name__ == "__main__": # start - #TODO: publicate - Public() \ No newline at end of file + # TODO: publicate + Public() diff --git a/python_libtorrent/python_libtorrent/__init__.py b/python_libtorrent/python_libtorrent/__init__.py index decef48..a8993a1 100644 --- a/python_libtorrent/python_libtorrent/__init__.py +++ b/python_libtorrent/python_libtorrent/__init__.py @@ -1,5 +1,5 @@ -#-*- coding: utf-8 -*- -''' +# -*- coding: utf-8 -*- +""" python-libtorrent for Kodi (script.module.libtorrent) Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman @@ -21,12 +21,13 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' +""" -from functions import * -import xbmc, xbmcaddon import sys -import os + +from .functions import * +from .platform_pulsar import get_platform +import warnings __settings__ = xbmcaddon.Addon(id='script.module.libtorrent') __version__ = __settings__.getAddonInfo('version') @@ -34,23 +35,23 @@ __plugin__ = __settings__.getAddonInfo('name') + " v." + __version__ __language__ = __settings__.getLocalizedString __root__ = os.path.dirname(os.path.dirname(__file__)) -libtorrent=None +libtorrent = None platform = get_platform() -set_dirname=__settings__.getSetting('dirname') +set_dirname = __settings__.getSetting('dirname') if getSettingAsBool('custom_dirname') and set_dirname: - log('set_dirname:' +str(set_dirname)) - dirname=set_dirname + log('set_dirname:' + str(set_dirname)) + dirname = set_dirname else: dirname = os.path.join(xbmc.translatePath('special://temp'), 'xbmcup', 'script.module.libtorrent', 'python_libtorrent') -log('dirname:' +str(dirname)) +log('dirname:' + str(dirname)) -versions = ['0.16.19', '1.0.6', '1.0.7', '1.0.8', '1.0.9', '1.1.0', '1.1.1', '1.0.11', '1.1.6', '1.1.7', '1.2.7'] +versions = ['1.2.15'] default_path = versions[-1] set_version = int(__settings__.getSetting('set_version')) if getSettingAsBool('custom_version'): - log('set_version:' +str(set_version)+' '+versions[set_version]) + log('set_version:' + str(set_version) + ' ' + versions[set_version]) platform['version'] = versions[set_version] else: platform['version'] = default_path @@ -67,7 +68,7 @@ if not os.path.exists(sizefile_path): if not os.path.isdir(os.path.join(__root__, platform['system'], ver)): versions.remove(ver) - if len(versions)>0: + if len(versions) > 0: platform['version'] = versions[-1] log('set_version: chose %s out of %s' % (platform['version'], str(versions))) else: @@ -76,63 +77,74 @@ if not os.path.exists(sizefile_path): dest_path = os.path.join(dirname, platform['system'], platform['version']) sys.path.insert(0, dest_path) -lm=LibraryManager(dest_path, platform) +lm = LibraryManager(dest_path, platform) if not lm.check_exist(): - ok=lm.download() + ok = lm.download() xbmc.sleep(2000) - -if __settings__.getSetting('plugin_name')!=__plugin__: +if __settings__.getSetting('plugin_name') != __plugin__: __settings__.setSetting('plugin_name', __plugin__) lm.update() log('platform: ' + str(platform)) if platform['system'] not in ['windows']: - log('os: '+str(os.uname())) + log('os: ' + str(os.uname())) log_text = 'ucs4' if sys.maxunicode > 65536 else 'ucs2' - log_text += ' x64' if sys.maxint > 2147483647 else ' x86' + log_text += ' x64' if sys.maxsize > 2147483647 else ' x86' log(log_text) try: if platform['system'] in ['linux_x86', 'windows', 'linux_armv6', 'linux_armv7', 'linux_x86_64', 'linux_mipsel_ucs2', 'linux_mipsel_ucs4', 'linux_aarch64_ucs2', 'linux_aarch64_ucs4']: - import libtorrent + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + import libtorrent elif platform['system'] in ['darwin', 'ios_arm']: import imp + path_list = [dest_path] log('path_list = ' + str(path_list)) fp, pathname, description = imp.find_module('libtorrent', path_list) log('fp = ' + str(fp)) log('pathname = ' + str(pathname)) try: - libtorrent = imp.load_module('libtorrent', fp, pathname, description) + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + libtorrent = imp.load_module('libtorrent', fp, pathname, description) finally: if fp: fp.close() elif platform['system'] in ['android_armv7', 'android_x86']: import imp from ctypes import CDLL + try: - dll_path=os.path.join(dest_path, 'liblibtorrent.so') + dll_path = os.path.join(dest_path, 'liblibtorrent.so') log('CDLL path = ' + dll_path) - liblibtorrent=CDLL(dll_path) + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + liblibtorrent = CDLL(dll_path) log('CDLL = ' + str(liblibtorrent)) except: # If no permission in dest_path we need to go deeper! try: - dest_path=lm.android_workaround(new_dest_path='/data/data/org.xbmc.kodi/lib/') - dll_path=os.path.join(dest_path, 'liblibtorrent.so') + dest_path = lm.android_workaround(new_dest_path='/data/data/org.xbmc.kodi/lib/') + dll_path = os.path.join(dest_path, 'liblibtorrent.so') log('NEW CDLL path = ' + dll_path) - liblibtorrent=CDLL(dll_path) + liblibtorrent = CDLL(dll_path) log('CDLL = ' + str(liblibtorrent)) except: # http://i3.kym-cdn.com/photos/images/original/000/531/557/a88.jpg - dest_path=lm.android_workaround(new_dest_path=xbmc.translatePath('special://xbmc')) - dll_path=os.path.join(dest_path, 'liblibtorrent.so') + dest_path = lm.android_workaround(new_dest_path=xbmc.translatePath('special://xbmc')) + dll_path = os.path.join(dest_path, 'liblibtorrent.so') log('NEW CDLL path = ' + dll_path) - liblibtorrent=CDLL(dll_path) + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + liblibtorrent = CDLL(dll_path) log('CDLL = ' + str(liblibtorrent)) - liblibtorrent=CDLL(dll_path) + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + liblibtorrent = CDLL(dll_path) log('CDLL = ' + str(liblibtorrent)) path_list = [dest_path] log('path_list = ' + str(path_list)) @@ -140,15 +152,19 @@ try: log('fp = ' + str(fp)) log('pathname = ' + str(pathname)) try: - libtorrent = imp.load_module('libtorrent', fp, pathname, description) + with warnings.catch_warnings(): + warnings.simplefilter("ignore") + libtorrent = imp.load_module('libtorrent', fp, pathname, description) finally: - if fp: fp.close() + if fp: + fp.close() log('Imported libtorrent v' + libtorrent.version + ' from "' + dest_path + '"') -except Exception, e: +except Exception as e: log('Error importing libtorrent from "' + dest_path + '". Exception: ' + str(e)) pass + def get_libtorrent(): return libtorrent diff --git a/python_libtorrent/python_libtorrent/functions.py b/python_libtorrent/python_libtorrent/functions.py index 3cc44cc..7aee6d0 100644 --- a/python_libtorrent/python_libtorrent/functions.py +++ b/python_libtorrent/python_libtorrent/functions.py @@ -1,5 +1,5 @@ -#-*- coding: utf-8 -*- -''' +# -*- coding: utf-8 -*- +""" python-libtorrent for Kodi (script.module.libtorrent) Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman @@ -21,55 +21,63 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' +""" import os -import xbmc, xbmcgui, xbmcvfs, xbmcaddon -from net import HTTP -__libbaseurl__ = "https://github.com/DiMartinoXBMC/script.module.libtorrent/raw/master/python_libtorrent" +import xbmc +import xbmcaddon +import xbmcvfs + +from .net import HTTP + +__libbaseurl__ = "https://git.ukamnya.ru/ukamnya/script.module.libtorrent/raw/branch/master/python_libtorrent" __settings__ = xbmcaddon.Addon(id='script.module.libtorrent') __version__ = __settings__.getAddonInfo('version') __plugin__ = __settings__.getAddonInfo('name') + " v." + __version__ -__icon__=os.path.join(xbmc.translatePath('special://home'), 'addons', - 'script.module.libtorrent', 'icon.png') +__icon__ = os.path.join(xbmc.translatePath('special://home'), 'addons', + 'script.module.libtorrent', 'icon.png') __language__ = __settings__.getLocalizedString -from python_libtorrent.platform_pulsar import get_platform, get_libname +from python_libtorrent.platform_pulsar import get_libname + def log(msg): try: - xbmc.log("### [%s]: %s" % (__plugin__,msg,), level=xbmc.LOGNOTICE ) + xbmc.log("### [%s]: %s" % (__plugin__, msg,), level=xbmc.LOGINFO) except UnicodeEncodeError: - xbmc.log("### [%s]: %s" % (__plugin__,msg.encode("utf-8", "ignore"),), level=xbmc.LOGNOTICE ) + xbmc.log("### [%s]: %s" % (__plugin__, msg.encode("utf-8", "ignore"),), level=xbmc.LOGINFO) except: - xbmc.log("### [%s]: %s" % (__plugin__,'ERROR LOG',), level=xbmc.LOGNOTICE ) + xbmc.log("### [%s]: %s" % (__plugin__, 'ERROR LOG',), level=xbmc.LOGINFO) + def getSettingAsBool(setting): return __settings__.getSetting(setting).lower() == "true" + class LibraryManager(): def __init__(self, dest_path, platform): self.dest_path = dest_path self.platform = platform - self.root=os.path.dirname(os.path.dirname(__file__)) + self.root = os.path.dirname(os.path.dirname(__file__)) def check_exist(self): for libname in get_libname(self.platform): - if not xbmcvfs.exists(os.path.join(self.dest_path,libname)): + if not xbmcvfs.exists(os.path.join(self.dest_path, libname)): return False return True def check_update(self): - need_update=False + need_update = False for libname in get_libname(self.platform): - if libname!='liblibtorrent.so': + if libname != 'liblibtorrent.so': self.libpath = os.path.join(self.dest_path, libname) - self.sizepath=os.path.join(self.root, self.platform['system'], self.platform['version'], libname+'.size.txt') - size=str(os.path.getsize(self.libpath)) - size_old=open( self.sizepath, "r" ).read() - if size_old!=size: - need_update=True + self.sizepath = os.path.join(self.root, self.platform['system'], self.platform['version'], + libname + '.size.txt') + size = str(os.path.getsize(self.libpath)) + size_old = open(self.sizepath, "r").read() + if size_old != size: + need_update = True return need_update def update(self): @@ -85,7 +93,7 @@ class LibraryManager(): dest = os.path.join(self.dest_path, libname) log("try to fetch %s" % libname) url = "%s/%s/%s/%s.zip" % (__libbaseurl__, self.platform['system'], self.platform['version'], libname) - if libname!='liblibtorrent.so': + if libname != 'liblibtorrent.so': try: self.http = HTTP() self.http.fetch(url, download=dest + ".zip", progress=True) @@ -94,26 +102,26 @@ class LibraryManager(): xbmcvfs.delete(dest + ".zip") except: text = 'Failed download %s!' % libname - xbmc.executebuiltin("XBMC.Notification(%s,%s,%s,%s)" % (__plugin__,text,750,__icon__)) + xbmc.executebuiltin("XBMC.Notification(%s,%s,%s,%s)" % (__plugin__, text, 750, __icon__)) else: xbmcvfs.copy(os.path.join(self.dest_path, 'libtorrent.so'), dest) return True def android_workaround(self, new_dest_path): for libname in get_libname(self.platform): - libpath=os.path.join(self.dest_path, libname) - size=str(os.path.getsize(libpath)) - new_libpath=os.path.join(new_dest_path, libname) + libpath = os.path.join(self.dest_path, libname) + size = str(os.path.getsize(libpath)) + new_libpath = os.path.join(new_dest_path, libname) if not xbmcvfs.exists(new_libpath): xbmcvfs.copy(libpath, new_libpath) - log('Copied %s -> %s' %(libpath, new_libpath)) + log('Copied %s -> %s' % (libpath, new_libpath)) if not xbmcvfs.exists(new_libpath): log('Failed!') else: - new_size=str(os.path.getsize(new_libpath)) - if size!=new_size: + new_size = str(os.path.getsize(new_libpath)) + if size != new_size: xbmcvfs.delete(new_libpath) xbmcvfs.copy(libpath, new_libpath) - log('Deleted and copied (%s) %s -> (%s) %s' %(size, libpath, new_size, new_libpath)) + log('Deleted and copied (%s) %s -> (%s) %s' % (size, libpath, new_size, new_libpath)) return new_dest_path diff --git a/python_libtorrent/python_libtorrent/net.py b/python_libtorrent/python_libtorrent/net.py index 043dacd..b662d3a 100644 --- a/python_libtorrent/python_libtorrent/net.py +++ b/python_libtorrent/python_libtorrent/net.py @@ -1,4 +1,4 @@ -#-*- coding: utf-8 -*- +# -*- coding: utf-8 -*- ''' python-libtorrent for Kodi (script.module.libtorrent) Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman @@ -23,16 +23,21 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ''' -import os -import time -import re -import urllib -import urllib2 -import cookielib import base64 -import mimetools -import itertools +import http.cookiejar +import os +import random +import re +import urllib.error +import urllib.error +import urllib.parse +import urllib.parse +import urllib.request +import urllib.request +import itertools +import sys +import time import xbmc import xbmcgui import xbmcvfs @@ -41,6 +46,7 @@ RE = { 'content-disposition': re.compile('attachment;\sfilename="*([^"\s]+)"|\s') } + # ################################ # # HTTP @@ -68,9 +74,9 @@ class HTTP: try: self._opener() self._fetch() - except Exception, e: + except Exception as e: xbmc.log('XBMCup: HTTP: ' + str(e), xbmc.LOGERROR) - if isinstance(e, urllib2.HTTPError): + if isinstance(e, urllib.error.HTTPError): self.response.code = e.code self.response.error = e else: @@ -96,58 +102,58 @@ class HTTP: def _opener(self): - build = [urllib2.HTTPHandler()] + build = [urllib.request.HTTPHandler()] if self.request.redirect: - build.append(urllib2.HTTPRedirectHandler()) + build.append(urllib.request.HTTPRedirectHandler()) if self.request.proxy_host and self.request.proxy_port: - build.append(urllib2.ProxyHandler( + build.append(urllib.request.ProxyHandler( {self.request.proxy_protocol: self.request.proxy_host + ':' + str(self.request.proxy_port)})) if self.request.proxy_username: - proxy_auth_handler = urllib2.ProxyBasicAuthHandler() + proxy_auth_handler = urllib.request.ProxyBasicAuthHandler() proxy_auth_handler.add_password('realm', 'uri', self.request.proxy_username, self.request.proxy_password) build.append(proxy_auth_handler) if self.request.cookies: self.request.cookies = os.path.join(self._dirname, self.request.cookies) - self.cookies = cookielib.MozillaCookieJar() + self.cookies = http.cookiejar.MozillaCookieJar() if os.path.isfile(self.request.cookies): self.cookies.load(self.request.cookies) - build.append(urllib2.HTTPCookieProcessor(self.cookies)) + build.append(urllib.request.HTTPCookieProcessor(self.cookies)) - urllib2.install_opener(urllib2.build_opener(*build)) + urllib.request.install_opener(urllib.request.build_opener(*build)) def _fetch(self): params = {} if self.request.params is None else self.request.params if self.request.upload: boundary, upload = self._upload(self.request.upload, params) - req = urllib2.Request(self.request.url) - req.add_data(upload) + req = urllib.request.Request(self.request.url, bytes(upload)) + # req.add_data(upload) else: if self.request.method == 'POST': if isinstance(params, dict) or isinstance(params, list): - params = urllib.urlencode(params) - req = urllib2.Request(self.request.url, params) + params = urllib.parse.urlencode(params) + req = urllib.request.Request(self.request.url, bytes(params)) else: - req = urllib2.Request(self.request.url) + req = urllib.request.Request(self.request.url) - for key, value in self.request.headers.iteritems(): + for key, value in self.request.headers.items(): req.add_header(key, value) if self.request.upload: req.add_header('Content-type', 'multipart/form-data; boundary=%s' % boundary) - req.add_header('Content-length', len(upload)) + req.add_header('Content-length', str(len(upload))) if self.request.auth_username and self.request.auth_password: req.add_header('Authorization', 'Basic %s' % base64.encodestring( - ':'.join([self.request.auth_username, self.request.auth_password])).strip()) + bytes(':'.join([self.request.auth_username, self.request.auth_password])).strip())) - self.con = urllib2.urlopen(req, timeout=self.request.timeout) + self.con = urllib.request.urlopen(req, timeout=self.request.timeout) # self.con = urllib2.urlopen(req) self.response.headers = self._headers(self.con.info()) @@ -163,7 +169,7 @@ class HTTP: fd = open(self.request.download, 'wb') if self.request.progress: self.progress = xbmcgui.DialogProgress() - self.progress.create(u'Download') + self.progress.create('Download') bs = 1024 * 8 size = -1 @@ -176,7 +182,7 @@ class HTTP: if 'content-disposition' in self.response.headers: r = RE['content-disposition'].search(self.response.headers['content-disposition']) if r: - name = urllib.unquote(r.group(1)) + name = urllib.parse.unquote(r.group(1)) while 1: buf = self.con.read(bs) @@ -192,11 +198,11 @@ class HTTP: def _upload(self, upload, params): res = [] - boundary = mimetools.choose_boundary() + boundary = _make_boundary() part_boundary = '--' + boundary if params: - for name, value in params.iteritems(): + for name, value in params.items(): res.append([part_boundary, 'Content-Disposition: form-data; name="%s"' % name, '', value]) if isinstance(upload, dict): @@ -213,11 +219,13 @@ class HTTP: if content_type: res.append([part_boundary, - 'Content-Disposition: file; name="%s"; filename="%s"' % (name, urllib.quote(filename)), + 'Content-Disposition: file; name="%s"; filename="%s"' % ( + name, urllib.parse.quote(filename)), 'Content-Type: %s' % content_type, '', body]) else: res.append([part_boundary, - 'Content-Disposition: file; name="%s"; filename="%s"' % (name, urllib.quote(filename)), '', + 'Content-Disposition: file; name="%s"; filename="%s"' % ( + name, urllib.parse.quote(filename)), '', body]) result = list(itertools.chain(*res)) @@ -243,10 +251,10 @@ class HTTP: else: res.append(int(float(read) / (float(size) / 100.0))) if name: - res.append(u'File: ' + name) + res.append('File: ' + name) if size != -1: - res.append(u'Size: ' + self._human(size)) - res.append(u'Load: ' + self._human(read)) + res.append('Size: ' + self._human(size)) + res.append('Load: ' + self._human(read)) return res def _human(self, size): @@ -258,9 +266,9 @@ class HTTP: else: break if human is None: - return (u'%10.1f %s' % (size, u'byte')).replace(u'.0', u'') + return ('%10.1f %s' % (size, 'byte')).replace('.0', '') else: - return u'%10.2f %s' % (float(size) / float(factor), human) + return '%10.2f %s' % (float(size) / float(factor), human) class HTTPRequest: @@ -298,7 +306,7 @@ class HTTPRequest: self.gzip = gzip def __repr__(self): - return '%s(%s)' % (self.__class__.__name__, ','.join('%s=%r' % i for i in self.__dict__.iteritems())) + return '%s(%s)' % (self.__class__.__name__, ','.join('%s=%r' % i for i in self.__dict__.items())) class HTTPResponse: @@ -312,9 +320,32 @@ class HTTPResponse: self.time = time.time() def __repr__(self): - args = ','.join('%s=%r' % i for i in self.__dict__.iteritems() if i[0] != 'body') + args = ','.join('%s=%r' % i for i in self.__dict__.items() if i[0] != 'body') if self.body: args += ',body=' else: args += ',body=None' return '%s(%s)' % (self.__class__.__name__, args) + + +# Helper +_width = len(repr(sys.maxsize - 1)) +_fmt = '%%0%dd' % _width + + +def _make_boundary(text=None): + # Craft a random boundary. If text is given, ensure that the chosen + # boundary doesn't appear in the text. + token = random.randrange(sys.maxsize) + boundary = ('=' * 15) + (_fmt % token) + '==' + if text is None: + return boundary + b = boundary + counter = 0 + while True: + cre = re.compile('^--' + re.escape(b) + '(--)?$', re.MULTILINE) + if not cre.search(text): + break + b = boundary + '.' + str(counter) + counter += 1 + return b diff --git a/python_libtorrent/python_libtorrent/platform_pulsar.py b/python_libtorrent/python_libtorrent/platform_pulsar.py index 4df87ee..f63794f 100644 --- a/python_libtorrent/python_libtorrent/platform_pulsar.py +++ b/python_libtorrent/python_libtorrent/platform_pulsar.py @@ -1,5 +1,5 @@ -#-*- coding: utf-8 -*- -''' +# -*- coding: utf-8 -*- +""" python-libtorrent for Kodi (script.module.libtorrent) Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman @@ -21,12 +21,14 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' +""" import sys import os + try: import xbmc, xbmcaddon + __settings__ = xbmcaddon.Addon(id='script.module.libtorrent') __version__ = __settings__.getAddonInfo('version') __plugin__ = __settings__.getAddonInfo('name') + " v." + __version__ @@ -34,29 +36,32 @@ except: __plugin__ = 'script.module.libtorrent' pass + def log(msg): try: - xbmc.log("### [%s]: %s" % (__plugin__,msg,), level=xbmc.LOGNOTICE ) + xbmc.log("### [%s]: %s" % (__plugin__, msg,), level=xbmc.LOGINFO) except UnicodeEncodeError: - xbmc.log("### [%s]: %s" % (__plugin__,msg.encode("utf-8", "ignore"),), level=xbmc.LOGNOTICE ) + xbmc.log("### [%s]: %s" % (__plugin__, msg.encode("utf-8", "ignore"),), level=xbmc.LOGINFO) except: try: - xbmc.log("### [%s]: %s" % (__plugin__,'ERROR LOG',), level=xbmc.LOGNOTICE ) + xbmc.log("### [%s]: %s" % (__plugin__, 'ERROR LOG',), level=xbmc.LOGINFO) except: - print msg + print(msg) + def get_libname(platform): - libname=[] + libname = [] if platform['system'] in ['darwin', 'linux_x86', 'linux_arm', 'linux_armv6', 'linux_armv7', 'linux_x86_64', 'ios_arm', 'linux_mipsel_ucs2', 'linux_mipsel_ucs4', 'linux_aarch64_ucs2', 'linux_aarch64_ucs4']: - libname=['libtorrent.so'] + libname = ['libtorrent.so'] elif platform['system'] == 'windows': - libname=['libtorrent.pyd'] + libname = ['libtorrent.pyd'] elif platform['system'] in ['android_armv7', 'android_x86']: - libname=['libtorrent.so', 'liblibtorrent.so'] + libname = ['libtorrent.so', 'liblibtorrent.so'] return libname + def get_platform(): __settings__ = xbmcaddon.Addon(id='script.module.libtorrent') __version__ = __settings__.getAddonInfo('version') @@ -65,44 +70,44 @@ def get_platform(): if __settings__.getSetting('custom_system').lower() == "true": system = int(__settings__.getSetting('set_system')) - log('USE CUSTOM SYSTEM: '+__language__(1100+system)) + log('USE CUSTOM SYSTEM: ' + __language__(401100 + system)) - ret={} + ret = {} - if system==0: + if system == 0: ret["os"] = "windows" ret["arch"] = "x86" - elif system==1: + elif system == 1: ret["os"] = "linux" ret["arch"] = "x86" - elif system==2: + elif system == 2: ret["os"] = "linux" ret["arch"] = "x64" - elif system==3: + elif system == 3: ret["os"] = "linux" ret["arch"] = "armv7" - elif system==4: + elif system == 4: ret["os"] = "linux" ret["arch"] = "armv6" - elif system==5: + elif system == 5: ret["os"] = "android" ret["arch"] = "arm" - elif system==6: + elif system == 6: ret["os"] = "android" ret["arch"] = "x86" - elif system==7: + elif system == 7: ret["os"] = "darwin" ret["arch"] = "x64" - elif system==8: + elif system == 8: ret["os"] = "ios" ret["arch"] = "arm" - elif system==9: + elif system == 9: ret["os"] = "ios" ret["arch"] = "arm" - elif system==10: + elif system == 10: ret["os"] = "linux" ret["arch"] = "mipsel_ucs2" - elif system==11: + elif system == 11: ret["os"] = "linux" ret["arch"] = "mipsel_ucs4" elif system == 12: @@ -125,7 +130,7 @@ def get_platform(): ret["arch"] = "arm" elif xbmc.getCondVisibility("system.platform.linux"): ret["os"] = "linux" - uname=os.uname()[4] + uname = os.uname()[4] if "arm" in uname: if "armv7" in uname: ret["arch"] = "armv7" @@ -137,13 +142,13 @@ def get_platform(): else: ret["arch"] = 'mipsel_ucs2' elif "aarch64" in uname: - if sys.maxint > 2147483647: #is_64bit_system + if sys.maxsize > 2147483647: # is_64bit_system if sys.maxunicode > 65536: ret["arch"] = 'aarch64_ucs4' else: ret["arch"] = 'aarch64_ucs2' else: - ret["arch"] = "armv7" #32-bit userspace + ret["arch"] = "armv7" # 32-bit userspace elif xbmc.getCondVisibility("system.platform.windows"): ret["os"] = "windows" elif xbmc.getCondVisibility("system.platform.osx"): @@ -152,9 +157,10 @@ def get_platform(): ret["os"] = "ios" ret["arch"] = "arm" - ret=get_system(ret) + ret = get_system(ret) return ret + def get_system(ret): ret["system"] = '' ret["message"] = ['', ''] @@ -176,11 +182,11 @@ def get_system(ret): ret["message"] = ['Linux has static compiled python-libtorrent included but it didn\'t work.', 'You should install it by "sudo apt-get install python-libtorrent"'] elif ret["os"] == "linux" and ("arm" in ret["arch"] or 'mips' in ret["arch"]): - ret["system"] = 'linux_'+ret["arch"] + ret["system"] = 'linux_' + ret["arch"] ret["message"] = ['As far as I know you can compile python-libtorrent for ARMv6-7.', 'You should search for "OneEvil\'s OpenELEC libtorrent" or use Ace Stream.'] elif ret["os"] == "android": - if ret["arch"]=='arm': + if ret["arch"] == 'arm': ret["system"] = 'android_armv7' else: ret["system"] = 'android_x86' diff --git a/python_libtorrent/windows_x86/0.16.19/__init__.py b/python_libtorrent/windows_x86/0.16.19/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/windows_x86/0.16.19/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/windows_x86/0.16.19/libtorrent.pyd.size.txt b/python_libtorrent/windows_x86/0.16.19/libtorrent.pyd.size.txt deleted file mode 100644 index f7b7ca5..0000000 --- a/python_libtorrent/windows_x86/0.16.19/libtorrent.pyd.size.txt +++ /dev/null @@ -1 +0,0 @@ -2363904 \ No newline at end of file diff --git a/python_libtorrent/windows_x86/0.16.19/libtorrent.pyd.zip b/python_libtorrent/windows_x86/0.16.19/libtorrent.pyd.zip deleted file mode 100644 index d9ea815..0000000 Binary files a/python_libtorrent/windows_x86/0.16.19/libtorrent.pyd.zip and /dev/null differ diff --git a/python_libtorrent/windows_x86/1.0.6/__init__.py b/python_libtorrent/windows_x86/1.0.6/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/windows_x86/1.0.6/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/windows_x86/1.0.6/libtorrent.pyd.size.txt b/python_libtorrent/windows_x86/1.0.6/libtorrent.pyd.size.txt deleted file mode 100644 index 3c2fa28..0000000 --- a/python_libtorrent/windows_x86/1.0.6/libtorrent.pyd.size.txt +++ /dev/null @@ -1 +0,0 @@ -2281472 \ No newline at end of file diff --git a/python_libtorrent/windows_x86/1.0.6/libtorrent.pyd.zip b/python_libtorrent/windows_x86/1.0.6/libtorrent.pyd.zip deleted file mode 100644 index 0149a89..0000000 Binary files a/python_libtorrent/windows_x86/1.0.6/libtorrent.pyd.zip and /dev/null differ diff --git a/python_libtorrent/windows_x86/1.0.8/__init__.py b/python_libtorrent/windows_x86/1.0.8/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/windows_x86/1.0.8/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/windows_x86/1.0.8/libtorrent.pyd.size.txt b/python_libtorrent/windows_x86/1.0.8/libtorrent.pyd.size.txt deleted file mode 100644 index d073a9f..0000000 --- a/python_libtorrent/windows_x86/1.0.8/libtorrent.pyd.size.txt +++ /dev/null @@ -1 +0,0 @@ -2426368 \ No newline at end of file diff --git a/python_libtorrent/windows_x86/1.0.8/libtorrent.pyd.zip b/python_libtorrent/windows_x86/1.0.8/libtorrent.pyd.zip deleted file mode 100644 index 9473752..0000000 Binary files a/python_libtorrent/windows_x86/1.0.8/libtorrent.pyd.zip and /dev/null differ diff --git a/python_libtorrent/windows_x86/1.0.9/__init__.py b/python_libtorrent/windows_x86/1.0.9/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/windows_x86/1.0.9/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/windows_x86/1.0.9/libtorrent.pyd.size.txt b/python_libtorrent/windows_x86/1.0.9/libtorrent.pyd.size.txt deleted file mode 100644 index 117a864..0000000 --- a/python_libtorrent/windows_x86/1.0.9/libtorrent.pyd.size.txt +++ /dev/null @@ -1 +0,0 @@ -2427392 \ No newline at end of file diff --git a/python_libtorrent/windows_x86/1.0.9/libtorrent.pyd.zip b/python_libtorrent/windows_x86/1.0.9/libtorrent.pyd.zip deleted file mode 100644 index d6250e5..0000000 Binary files a/python_libtorrent/windows_x86/1.0.9/libtorrent.pyd.zip and /dev/null differ diff --git a/python_libtorrent/windows_x86/1.1.1/__init__.py b/python_libtorrent/windows_x86/1.1.1/__init__.py deleted file mode 100644 index e0aed70..0000000 --- a/python_libtorrent/windows_x86/1.1.1/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#-*- coding: utf-8 -*- -''' - python-libtorrent for Kodi (script.module.libtorrent) - Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman - - Permission is hereby granted, free of charge, to any person obtaining - a copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -''' diff --git a/python_libtorrent/windows_x86/1.1.1/libtorrent.pyd.size.txt b/python_libtorrent/windows_x86/1.1.1/libtorrent.pyd.size.txt deleted file mode 100644 index 9f5f81b..0000000 --- a/python_libtorrent/windows_x86/1.1.1/libtorrent.pyd.size.txt +++ /dev/null @@ -1 +0,0 @@ -2671616 \ No newline at end of file diff --git a/python_libtorrent/windows_x86/1.1.1/libtorrent.pyd.zip b/python_libtorrent/windows_x86/1.1.1/libtorrent.pyd.zip deleted file mode 100644 index d18d35f..0000000 Binary files a/python_libtorrent/windows_x86/1.1.1/libtorrent.pyd.zip and /dev/null differ diff --git a/python_libtorrent/windows_x86/1.2.7/__init__.py b/python_libtorrent/windows_x86/1.2.7/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/python_libtorrent/windows_x86/1.2.7/libtorrent.pyd.size.txt b/python_libtorrent/windows_x86/1.2.7/libtorrent.pyd.size.txt deleted file mode 100644 index 1655387..0000000 --- a/python_libtorrent/windows_x86/1.2.7/libtorrent.pyd.size.txt +++ /dev/null @@ -1 +0,0 @@ -5616654 \ No newline at end of file diff --git a/python_libtorrent/windows_x86/1.2.7/libtorrent.pyd.zip b/python_libtorrent/windows_x86/1.2.7/libtorrent.pyd.zip deleted file mode 100644 index 0edde84..0000000 Binary files a/python_libtorrent/windows_x86/1.2.7/libtorrent.pyd.zip and /dev/null differ diff --git a/python_libtorrent/windows_x86_64/1.2.7/__init__.py b/python_libtorrent/windows_x86_64/1.2.7/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/python_libtorrent/windows_x86_64/1.2.7/libtorrent.pyd.size.txt b/python_libtorrent/windows_x86_64/1.2.7/libtorrent.pyd.size.txt deleted file mode 100644 index 8bc6bcc..0000000 --- a/python_libtorrent/windows_x86_64/1.2.7/libtorrent.pyd.size.txt +++ /dev/null @@ -1 +0,0 @@ -5052416 \ No newline at end of file diff --git a/python_libtorrent/windows_x86_64/1.2.7/libtorrent.pyd.zip b/python_libtorrent/windows_x86_64/1.2.7/libtorrent.pyd.zip deleted file mode 100644 index 3251fb9..0000000 Binary files a/python_libtorrent/windows_x86_64/1.2.7/libtorrent.pyd.zip and /dev/null differ diff --git a/resources/language/English/strings.po b/resources/language/English/strings.po new file mode 100644 index 0000000..380c731 --- /dev/null +++ b/resources/language/English/strings.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" + +msgctxt "#401000" +msgid "401000" +msgstr "Settings" + +msgctxt "#401001" +msgid "401001" +msgstr "Use custom path to library" + +msgctxt "#401002" +msgid "401002" +msgstr "Custom path to library" + +msgctxt "#401003" +msgid "401003" +msgstr "Disable automatic system detection" + +msgctxt "#401004" +msgid "401004" +msgstr "Use library for" + +msgctxt "#401005" +msgid "401005" +msgstr "Edit path with keyboard (on run)" + +msgctxt "#401006" +msgid "401006" +msgstr "Custom python-libtorrent version" + +msgctxt "#401007" +msgid "401007" +msgstr "Use python-libtorrent (if available)" + +msgctxt "#401100" +msgid "Windows 32-bit" +msgstr "Windows 32-bit" + +msgctxt "#401101" +msgid "Linux 32-bit" +msgstr "Linux 32-bit" + +msgctxt "#401102" +msgid "Linux 64-bit" +msgstr "Linux 64-bit" + +msgctxt "#401103" +msgid "Linux ARM v7 (RPi 2)" +msgstr "Linux ARM v7 (RPi 2)" + +msgctxt "#401104" +msgid "Linux ARM v6 (RPi)" +msgstr "Linux ARM v6 (RPi)" + +msgctxt "#401105" +msgid "Android ARM v7" +msgstr "Android ARM v7" + +msgctxt "#401106" +msgid "Android 32-bit" +msgstr "Android 32-bit" + +msgctxt "#401107" +msgid "OS X" +msgstr "OS X" + +msgctxt "#401108" +msgid "Apple TV2" +msgstr "Apple TV2" + +msgctxt "#401109" +msgid "iOS" +msgstr "iOS" + +msgctxt "#401110" +msgid "Linux MIPSEL (UCS2)" +msgstr "Linux MIPSEL (UCS2)" + +msgctxt "#401111" +msgid "Linux MIPSEL (UCS4)" +msgstr "Linux MIPSEL (UCS4)" + +msgctxt "#401112" +msgid "Linux ARM v8 AARCH64 (UCS2)" +msgstr "Linux ARM v8 AARCH64 (UCS2)" + +msgctxt "#401113" +msgid "Linux ARM v8 AARCH64 (UCS4)" +msgstr "Linux ARM v8 AARCH64 (UCS4)" + +msgctxt "#401114" +msgid "Windows 64-bit" +msgstr "Windows 64-bit" + +msgctxt "#401150" +msgid "1.2.15" +msgstr "1.2.15" + +msgctxt "#401010" +msgid "401010" +msgstr "TS Engine not running!" + +msgctxt "#401011" +msgid "401011" +msgstr "No answer" + +msgctxt "#401012" +msgid "401012" +msgstr "Error torrent loading" + +msgctxt "#401013" +msgid "401013" +msgstr "Timeout" + +msgctxt "#402000" +msgid "402000" +msgstr "Server Address" + +msgctxt "#402001" +msgid "402001" +msgstr "AutoPausing" + +msgctxt "#402002" +msgid "402002" +msgstr "AutoClose tsengine" + +msgctxt "#402003" +msgid "402003" +msgstr "Show Buffering Status" diff --git a/resources/language/Hebrew/strings.po b/resources/language/Hebrew/strings.po new file mode 100644 index 0000000..dc25489 --- /dev/null +++ b/resources/language/Hebrew/strings.po @@ -0,0 +1,117 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hb\n" + +msgctxt "#401000" +msgid "401000" +msgstr "הגדרות" + +msgctxt "#401001" +msgid "401001" +msgstr "השתמש בנתיב מותאם אישית לספרייה" + +msgctxt "#401002" +msgid "401002" +msgstr "נתיב אישי לספרייה" + +msgctxt "#401003" +msgid "401003" +msgstr "בטל זיהוי מערכת אוטומטי" + +msgctxt "#401004" +msgid "401004" +msgstr "השתמש בספרייה ל" + +msgctxt "#401005" +msgid "401005" +msgstr "עריכת נתיב עם מקלדת (בפעולה)" + +msgctxt "#401006" +msgid "401006" +msgstr "גרסת Python-libtorrent מותאם אישית" + +msgctxt "#401007" +msgid "401007" +msgstr "השתמש ב-Python-libtorrent (אם קיים)" + +msgctxt "#401100" +msgid "401100" +msgstr "חלונות 32 סיביות, 64 סיביות" + +msgctxt "#401101" +msgid "401101" +msgstr "לינוקס 32 סיביות" + +msgctxt "#401102" +msgid "401102" +msgstr "לינוקס 64 סיביות (לא מוכן)" + +msgctxt "#401103" +msgid "401103" +msgstr "לינוקס ARM v7 (RPI 2, לא מוכן)" + +msgctxt "#401104" +msgid "401104" +msgstr "לינוקס ARM v6 (RPI, לא מוכן)" + +msgctxt "#401105" +msgid "401105" +msgstr "אנדרואיד ARM v7" + +msgctxt "#401106" +msgid "401106" +msgstr "אנדרואיד 32 סיביות" + +msgctxt "#401107" +msgid "401107" +msgstr "OS X" + +msgctxt "#401108" +msgid "401108" +msgstr "אפל TV2 (לא מוכן)" + +msgctxt "#401109" +msgid "401109" +msgstr "iOS (לא מוכן)" + +msgctxt "#401150" +msgid "401150" +msgstr "זרעים: %s מהירות: %s" + +msgctxt "#401151" +msgid "401151" +msgstr "שניות %s'" + +msgctxt "#401010" +msgid "401010" +msgstr "תהליך TS לא פועל!" + +msgctxt "#401011" +msgid "401011" +msgstr "אין תשובה" + +msgctxt "#401012" +msgid "401012" +msgstr "שגיאה בטעינת טורנט" + +msgctxt "#401013" +msgid "401013" +msgstr "פסק זמן" + +msgctxt "#402000" +msgid "402000" +msgstr "כתובת שרת" + +msgctxt "#402001" +msgid "402001" +msgstr "השהייה אוטומטית" + +msgctxt "#402002" +msgid "402002" +msgstr "סגירה אוטומטית תהליך TS" + +msgctxt "#402003" +msgid "402003" +msgstr "הצג מצב אגירה" diff --git a/resources/language/Russian/strings.po b/resources/language/Russian/strings.po new file mode 100644 index 0000000..7aab9ac --- /dev/null +++ b/resources/language/Russian/strings.po @@ -0,0 +1,69 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" + +msgctxt "#401000" +msgid "401000" +msgstr "Настройки" + +msgctxt "#401001" +msgid "401001" +msgstr "Изменить путь к библиотеке" + +msgctxt "#401002" +msgid "401002" +msgstr "Путь к библиотеке" + +msgctxt "#401003" +msgid "401003" +msgstr "Отключить автоматическое определение системы" + +msgctxt "#401004" +msgid "401004" +msgstr "Библиотека для" + +msgctxt "#401005" +msgid "401005" +msgstr "Отредактировать путь клавиатурой (при запуске)" + +msgctxt "#401006" +msgid "401006" +msgstr "Выбрать версию python-libtorrent" + +msgctxt "#401007" +msgid "401007" +msgstr "Использовать python-libtorrent (при наличии)" + +msgctxt "#401010" +msgid "401010" +msgstr "TS Engine не запущен!" + +msgctxt "#401011" +msgid "401011" +msgstr "Нет ответа" + +msgctxt "#401012" +msgid "401012" +msgstr "Ошибка загрузки торрента" + +msgctxt "#401013" +msgid "401013" +msgstr "Не дождался ссылки для воспроизведения" + +msgctxt "#402000" +msgid "402000" +msgstr "Адрес сервера" + +msgctxt "#402001" +msgid "402001" +msgstr "Использовать автопаузу" + +msgctxt "#402002" +msgid "402002" +msgstr "Автозакрытие tsengine" + +msgctxt "#402003" +msgid "402003" +msgstr "Показывать уведомления о буферизации" diff --git a/resources/language/Spanish/strings.po b/resources/language/Spanish/strings.po new file mode 100644 index 0000000..84204a5 --- /dev/null +++ b/resources/language/Spanish/strings.po @@ -0,0 +1,125 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" + +msgctxt "#401000" +msgid "401000" +msgstr "Ajustes" + +msgctxt "#401001" +msgid "401001" +msgstr "Utilizar ruta personalizada para librería" + +msgctxt "#401002" +msgid "401002" +msgstr "Ruta personalizada de librería" + +msgctxt "#401003" +msgid "401003" +msgstr "Desactivar detección automática de sistema" + +msgctxt "#401004" +msgid "401004" +msgstr "Utilizar librería de" + +msgctxt "#401005" +msgid "401005" +msgstr "Editar ruta con teclado (al inicio)" + +msgctxt "#401006" +msgid "401006" +msgstr "Versión personalizada de python-libtorrent" + +msgctxt "#401007" +msgid "401007" +msgstr "Utilizar versión (si está disponible)" + +msgctxt "#401100" +msgid "401100" +msgstr "Windows 32-bit, 64-bit" + +msgctxt "#401101" +msgid "401101" +msgstr "Linux 32-bit" + +msgctxt "#401102" +msgid "401102" +msgstr "Linux 64-bit" + +msgctxt "#401103" +msgid "401103" +msgstr "Linux ARM v7 (RPi 2)" + +msgctxt "#401104" +msgid "401104" +msgstr "Linux ARM v6 (RPi)" + +msgctxt "#401105" +msgid "401105" +msgstr "Android ARM v7" + +msgctxt "#401106" +msgid "401106" +msgstr "Android 32-bit" + +msgctxt "#401107" +msgid "401107" +msgstr "OS X" + +msgctxt "#401108" +msgid "401108" +msgstr "Apple TV2" + +msgctxt "#401109" +msgid "401109" +msgstr "iOS" + +msgctxt "#401110" +msgid "401110" +msgstr "Linux MIPSEL (UCS2)" + +msgctxt "#401111" +msgid "401111" +msgstr "Linux MIPSEL (UCS4)" + +msgctxt "#401112" +msgid "401112" +msgstr "Linux ARM v8 AARCH64 (UCS2)" + +msgctxt "#401113" +msgid "401113" +msgstr "Linux ARM v8 AARCH64 (UCS4)" + +msgctxt "#401010" +msgid "401010" +msgstr "¡El motor TS no está ejecutándose!" + +msgctxt "#401011" +msgid "401011" +msgstr "No se obtuvo respuesta" + +msgctxt "#401012" +msgid "401012" +msgstr "Error de carga de torrent" + +msgctxt "#401013" +msgid "401013" +msgstr "Se agotó el tiempo" + +msgctxt "#402000" +msgid "402000" +msgstr "Dirección del servidor" + +msgctxt "#402001" +msgid "402001" +msgstr "Pausa automática" + +msgctxt "#402002" +msgid "402002" +msgstr "Cierre automático de motor TS" + +msgctxt "#402003" +msgid "402003" +msgstr "Mostrar estado de carga de búfer" \ No newline at end of file diff --git a/resources/language/Spanish/strings.xml b/resources/language/Spanish/strings.xml deleted file mode 100644 index 6af1577..0000000 --- a/resources/language/Spanish/strings.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - Ajustes - Utilizar ruta personalizada para librería - Ruta personalizada de librería - Desactivar detección automática de sistema - Utilizar librería de - Editar ruta con teclado (al inicio) - Versión personalizada de python-libtorrent - Utilizar versión (si está disponible) - - Windows 32-bit, 64-bit - Linux 32-bit - Linux 64-bit - Linux ARM v7 (RPi 2) - Linux ARM v6 (RPi) - Android ARM v7 - Android 32-bit - OS X - Apple TV2 - iOS - Linux MIPSEL (UCS2) - Linux MIPSEL (UCS4) - Linux ARM v8 AARCH64 (UCS2) - Linux ARM v8 AARCH64 (UCS4) - - 0.16.19 - 1.0.6 - 1.0.7 - 1.0.8 - 1.0.9 - 1.1.0 - 1.1.1 - - ¡El motor TS no está ejecutándose! - No se obtuvo respuesta - Error de carga de torrent - Se agotó el tiempo - - Dirección del servidor - Pausa automática - Cierre automático de motor TS - Mostrar estado de carga de búfer - diff --git a/resources/language/english/strings.xml b/resources/language/english/strings.xml deleted file mode 100644 index 577d3bd..0000000 --- a/resources/language/english/strings.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - Settings - Use custom path to library - Custom path to library - Disable automatic system detection - Use library for - Edit path with keyboard (on run) - Custom python-libtorrent version - Use python-libtorrent (if available) - - Windows 32-bit - Linux 32-bit - Linux 64-bit - Linux ARM v7 (RPi 2) - Linux ARM v6 (RPi) - Android ARM v7 - Android 32-bit - OS X - Apple TV2 - iOS - Linux MIPSEL (UCS2) - Linux MIPSEL (UCS4) - Linux ARM v8 AARCH64 (UCS2) - Linux ARM v8 AARCH64 (UCS4) - Windows 64-bit - - 0.16.19 - 1.0.6 - 1.0.7 - 1.0.8 - 1.0.9 - 1.1.0 - 1.1.1 - 1.0.11 - 1.1.6 - 1.1.7 - 1.2.7 - - TS Engine not running! - No answer - Error torrent loading - Timeout - - Server Address - AutoPausing - AutoClose tsengine - Show Buffering Status - - \ No newline at end of file diff --git a/resources/language/hebrew/strings b/resources/language/hebrew/strings deleted file mode 100644 index 6de2e7d..0000000 --- a/resources/language/hebrew/strings +++ /dev/null @@ -1,35 +0,0 @@ - - - הגדרות - השתמש בנתיב מותאם אישית לספרייה - נתיב אישי לספרייה - בטל זיהוי מערכת אוטומטי - השתמש בספרייה ל - - - - חלונות 32 סיביות, 64 סיביות - לינוקס 32 סיביות - לינוקס 64 סיביות (לא מוכן) - לינוקס ARM v7 (RPI 2, לא מוכן) - לינוקס ARM v6 (RPI, לא מוכן) - אנדרואיד ARM v7 - אנדרואיד 32 סיביות - OS X - אפל TV2 (לא מוכן) - iOS (לא מוכן) - - זרעים: %s מהירות: %s - שניות %s' - - תהליך TS לא פועל! - אין תשובה - שגיאה בטעינת טורנט - פסק זמן - - כתובת שרת - השהייה אוטומטית - סגירה אוטומטית תהליך TS - הצג מצב אגירה - - diff --git a/resources/language/hebrew/strings.xml b/resources/language/hebrew/strings.xml deleted file mode 100644 index 45aad1c..0000000 --- a/resources/language/hebrew/strings.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - הגדרות - השתמש בנתיב מותאם אישית לספרייה - נתיב אישי לספרייה - בטל זיהוי מערכת אוטומטי - השתמש בספרייה ל - עריכת נתיב עם מקלדת (בפעולה) - גרסת Python-libtorrent מותאם אישית - השתמש ב-Python-libtorrent (אם קיים) - - חלונות 32 סיביות, 64 סיביות - לינוקס 32 סיביות - לינוקס 64 סיביות (לא מוכן) - לינוקס ARM v7 (RPI 2, לא מוכן) - לינוקס ARM v6 (RPI, לא מוכן) - אנדרואיד ARM v7 - אנדרואיד 32 סיביות - OS X - אפל TV2 (לא מוכן) - iOS (לא מוכן) - - זרעים: %s מהירות: %s - שניות %s' - - תהליך TS לא פועל! - אין תשובה - שגיאה בטעינת טורנט - פסק זמן - - כתובת שרת - השהייה אוטומטית - סגירה אוטומטית תהליך TS - הצג מצב אגירה - - \ No newline at end of file diff --git a/resources/language/russian/strings.xml b/resources/language/russian/strings.xml deleted file mode 100644 index a95fc51..0000000 --- a/resources/language/russian/strings.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - Настройки - Изменить путь к библиотеке - Путь к библиотеке - Отключить автоматическое определение системы - Библиотека для - Отредактировать путь клавиатурой (при запуске) - Выбрать версию python-libtorrent - Использовать python-libtorrent (при наличии) - - TS Engine не запущен! - Нет ответа - Ошибка загрузки торрента - Не дождался ссылки для воспроизведения - - Адрес сервера - Использовать автопаузу - Автозакрытие tsengine - Показывать уведомления о буферизации - \ No newline at end of file diff --git a/resources/settings.xml b/resources/settings.xml index 924d850..e789509 100644 --- a/resources/settings.xml +++ b/resources/settings.xml @@ -1,12 +1,12 @@ - - - - - - - - + + + + + + + +