-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[script.module.ijson] 3.2.2+matrix.1 (#2496)
- Loading branch information
Showing
19 changed files
with
1,025 additions
and
1,758 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
ijson | ||
===== | ||
|
||
Copyright (c) 2010, Ivan Sagalaev | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
|
@@ -22,3 +25,21 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
|
||
yajl | ||
==== | ||
|
||
Copyright (c) 2007-2014, Lloyd Hilaiel <[email protected]> | ||
|
||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted, provided that the above | ||
copyright notice and this permission notice appear in all copies. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<addon id="script.module.ijson" | ||
name="ijson" | ||
version="2.6.1+matrix.1" | ||
provider-name="Rodrigo Tobar, Ivan Sagalaev"> | ||
<requires> | ||
<import addon="xbmc.python" version="3.0.0"/> | ||
</requires> | ||
<extension | ||
point="xbmc.python.module" | ||
library="lib" /> | ||
<extension | ||
point="xbmc.addon.metadata"> | ||
<summary lang="en_GB">Iterative JSON parser with a standard Python iterator interface</summary> | ||
<description lang="en_GB">Packed for KODI from https://github.com/isagalaev/ijson</description> | ||
<license>BSD-3-Clause</license> | ||
<website>https://pypi.org/project/ijson/</website> | ||
<source>https://github.com/ICRAR/ijson</source> | ||
<assets> | ||
<icon>icon.png</icon> | ||
</assets> | ||
</extension> | ||
<addon id="script.module.ijson" name="ijson" version="3.2.2+matrix.1" provider-name="Rodrigo Tobar, Ivan Sagalaev"> | ||
<requires> | ||
<import addon="xbmc.python" version="3.0.0"/> | ||
</requires> | ||
<extension point="xbmc.python.module" library="lib" /> | ||
<extension point="xbmc.addon.metadata"> | ||
<summary lang="en_GB">Iterative JSON parser with standard Python iterator interfaces</summary> | ||
<description lang="en_GB">Iterative JSON parser with standard Python iterator interfaces</description> | ||
<license>BSD-3-Clause</license> | ||
<platform>all</platform> | ||
<website>https://pypi.org/project/ijson/</website> | ||
<source>https://github.com/ICRAR/ijson</source> | ||
<assets> | ||
<icon>resources/icon.png</icon> | ||
</assets> | ||
</extension> | ||
</addon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.