Skip to content

Commit e3258fb

Browse files
committed
[upd] use SPDX license identifiers
1 parent 51dd9e5 commit e3258fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+444
-37
lines changed
File renamed without changes.

addon.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
<extension point="xbmc.addon.metadata">
1010
<platform>all</platform>
1111
<news>
12-
[fix] video/live stream token encoding
12+
[upd] use SPDX license identifiers
1313
</news>
1414
<assets>
1515
<icon>icon.png</icon>
1616
</assets>
1717
<platform>all</platform>
1818
<summary lang="en_GB">Module for interaction with the Twitch.tv API</summary>
1919
<description lang="en_GB">python-twitch for Kodi is module for interaction with the Twitch.tv API based on python-twitch by ingwinlu.</description>
20-
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
20+
<license>GPL-3.0-only</license>
2121
<source>https://github.com/MrSprigster/script.module.python.twitch</source>
2222
<reuselanguageinvoker>true</reuselanguageinvoker>
2323
</extension>

changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.0.5
2+
[upd] use SPDX license identifiers
3+
14
2.0.4
25
[fix] video/live stream token encoding
36

resources/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""
2+
3+
Copyright (C) 2016-2018 script.module.python.twitch
4+
5+
This file is part of script.module.python.twitch
6+
7+
SPDX-License-Identifier: GPL-3.0-only
8+
See LICENSES/GPL-3.0-only for more information.
9+
"""

resources/lib/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
"""
2+
3+
Copyright (C) 2016-2018 script.module.python.twitch
4+
5+
This file is part of script.module.python.twitch
6+
7+
SPDX-License-Identifier: GPL-3.0-only
8+
See LICENSES/GPL-3.0-only for more information.
9+
"""
110

211
__all__ = ['twitch']
312

resources/lib/twitch/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# -*- encoding: utf-8 -*-
2+
"""
3+
4+
Copyright (C) 2012-2016 python-twitch (https://github.com/ingwinlu/python-twitch)
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
212

313
__all__ = ['VERSION', 'CLIENT_ID', 'CLIENT_SECRET', 'OAUTH_TOKEN', 'APP_TOKEN', 'api', 'oauth',
414
'exceptions', 'keys', 'log', 'methods', 'parser', 'queries', 'scraper']

resources/lib/twitch/api/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# -*- encoding: utf-8 -*-
2+
"""
3+
4+
Copyright (C) 2012-2016 python-twitch (https://github.com/ingwinlu/python-twitch)
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
212

313
__all__ = ['v5', 'default', 'helix', 'parameters', 'usher']
414

resources/lib/twitch/api/helix/__init__.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# -*- encoding: utf-8 -*-
2-
# https://dev.twitch.tv/docs/
2+
"""
3+
Reference: https://dev.twitch.tv/docs/
4+
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
312

413
__all__ = ['analytics', 'bits', 'clips', 'entitlements', 'games', 'streams', 'users', 'videos', 'webhooks']
514

resources/lib/twitch/api/helix/analytics.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# -*- encoding: utf-8 -*-
2-
# https://dev.twitch.tv/docs/api/reference
2+
"""
3+
Reference: https://dev.twitch.tv/docs/api/reference
4+
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
312

413
from ..parameters import IntRange, Cursor, ReportType
514
from ... import keys

resources/lib/twitch/api/helix/bits.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# -*- encoding: utf-8 -*-
2-
# https://dev.twitch.tv/docs/api/reference
2+
"""
3+
Reference: https://dev.twitch.tv/docs/api/reference
4+
5+
Copyright (C) 2016-2018 script.module.python.twitch
6+
7+
This file is part of script.module.python.twitch
8+
9+
SPDX-License-Identifier: GPL-3.0-only
10+
See LICENSES/GPL-3.0-only for more information.
11+
"""
312

413
from ..parameters import PeriodHelix, IntRange
514
from ... import keys

0 commit comments

Comments
 (0)