forked from casualsnek/onthespot
-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add apple music support and emit soundcloud progress
- Loading branch information
Showing
23 changed files
with
765 additions
and
119 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST m3u8-6.0.0.tar.gz 49590 BLAKE2B ffc9dd4748d4bafb690e3b8ddf3846de5044e72e98a36d53eb140c446ade128e73c0d8407f129793becb346c14ee95bc4deb7892b3f25e519216f1fa421ca839 SHA512 83f2f77772a957671a82fa482e7bc3e95a043c077e9ba2c5372c845c4fbbd2095d5eb4069ce5ca89c968cd4d6024fdee1ee87aa43a7a82bf392439275d45e137 |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{10..13} pypy3 ) | ||
DISTUTILS_USE_PEP517=setuptools | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Python m3u8 Parser for HTTP Live Streaming (HLS) Transmissions" | ||
HOMEPAGE=" | ||
https://github.com/globocom/m3u8/ | ||
https://pypi.org/project/m3u8/ | ||
" | ||
SRC_URI=" | ||
https://github.com/globocom/m3u8/archive/refs/tags/${PV}.tar.gz | ||
-> ${P}.tar.gz | ||
" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
distutils_enable_tests pytest |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Justin Donofrio</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">globocom/m3u8</remote-id> | ||
<remote-id type="pypi">m3u8</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST pywidevine-1.8.0.tar.gz 110922 BLAKE2B 2cd1a96776b5ed275e4e6921e2e655c0a0c1f34de5d51a5244689b4db4085f97f04a7d54baed125df8dcde5b910797dbc9da822bec9a19903ec86e9d37e20c94 SHA512 b6cdb294c289ad7e765ac9afc5bbd2f612183efe5971065cab503fafbbaf53ba393425b1572e2cd406403d0361de02dc610887f2317255c72164300ac544f326 |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Justin Donofrio</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">devine-dl/pywidevine</remote-id> | ||
<remote-id type="pypi">pywidevine</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
25 changes: 25 additions & 0 deletions
25
distros/gentoo/dev-python/pywidevine/pywidevine-1.8.0.ebuild
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{10..13} pypy3 ) | ||
DISTUTILS_USE_PEP517=poetry | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Python implementation of Google's Widevine DRM CDM" | ||
HOMEPAGE=" | ||
https://github.com/devine-dl/pywidevine/ | ||
https://pypi.org/project/pywidevine/ | ||
" | ||
SRC_URI=" | ||
https://github.com/devine-dl/pywidevine/archive/refs/tags/v${PV}.tar.gz | ||
-> ${P}.tar.gz | ||
" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
distutils_enable_tests pytest |
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
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,10 +1,12 @@ | ||
Flask | ||
flask | ||
librespot | ||
m3u8 | ||
music-tag | ||
mutagen | ||
Pillow | ||
PyQt6 | ||
PyQt6_sip | ||
Requests | ||
pillow | ||
pyqt6 | ||
pyqt6_sip | ||
pywidevine | ||
requests | ||
urllib3 | ||
yt-dlp |
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.