From bd605b70c2bde46c315b80dd2141bdc49298046d Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 22 Jun 2023 12:00:06 -0400 Subject: add jellyfin mpv-shim and apiclient-python --- jellyfin-apiclient-python/debian/control | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 jellyfin-apiclient-python/debian/control (limited to 'jellyfin-apiclient-python/debian/control') diff --git a/jellyfin-apiclient-python/debian/control b/jellyfin-apiclient-python/debian/control new file mode 100644 index 0000000..38c7bd8 --- /dev/null +++ b/jellyfin-apiclient-python/debian/control @@ -0,0 +1,20 @@ +Source: jellyfin-apiclient-python +Section: video +Priority: optional +Maintainer: B. Stack +Build-Depends: debhelper-compat (= 13), + dh-python, + python3-all-dev +Standards-Version: 4.5.1 +Homepage: https://github.com/jellyfin/jellyfin-apiclient-python +Rules-Requires-Root: no + +Package: jellyfin-apiclient-python +Architecture: any +Multi-Arch: foreign +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: python API client for Jellyfin + API client from Jellyfin Kodi extracted as a python + package so that other users may use the API without + maintaining a fork of the API client. See also + pip install jellyfin-apiclient-python -- cgit From a165cf3eb89f7d1e9e512a86ca806f75b7afb607 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 22 Jun 2023 14:19:50 -0400 Subject: jf parts: add python3-setuptools --- jellyfin-apiclient-python/debian/control | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'jellyfin-apiclient-python/debian/control') diff --git a/jellyfin-apiclient-python/debian/control b/jellyfin-apiclient-python/debian/control index 38c7bd8..06c8d58 100644 --- a/jellyfin-apiclient-python/debian/control +++ b/jellyfin-apiclient-python/debian/control @@ -4,7 +4,8 @@ Priority: optional Maintainer: B. Stack Build-Depends: debhelper-compat (= 13), dh-python, - python3-all-dev + python3-all-dev, + python3-setuptools Standards-Version: 4.5.1 Homepage: https://github.com/jellyfin/jellyfin-apiclient-python Rules-Requires-Root: no -- cgit From 8a99965a04ccf0c13f0aad7217549987ad5f56ae Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 22 Jun 2023 14:41:03 -0400 Subject: jf-apiclient add python3-requests --- jellyfin-apiclient-python/debian/control | 1 + 1 file changed, 1 insertion(+) (limited to 'jellyfin-apiclient-python/debian/control') diff --git a/jellyfin-apiclient-python/debian/control b/jellyfin-apiclient-python/debian/control index 06c8d58..316db0c 100644 --- a/jellyfin-apiclient-python/debian/control +++ b/jellyfin-apiclient-python/debian/control @@ -5,6 +5,7 @@ Maintainer: B. Stack Build-Depends: debhelper-compat (= 13), dh-python, python3-all-dev, + python3-requests, python3-setuptools Standards-Version: 4.5.1 Homepage: https://github.com/jellyfin/jellyfin-apiclient-python -- cgit From e6cec4c3c319ca0c7c5c8f9ce8eb9595100c6a43 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 22 Jun 2023 15:20:55 -0400 Subject: add python3-websocket --- jellyfin-apiclient-python/debian/control | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'jellyfin-apiclient-python/debian/control') diff --git a/jellyfin-apiclient-python/debian/control b/jellyfin-apiclient-python/debian/control index 316db0c..4d7989c 100644 --- a/jellyfin-apiclient-python/debian/control +++ b/jellyfin-apiclient-python/debian/control @@ -6,7 +6,8 @@ Build-Depends: debhelper-compat (= 13), dh-python, python3-all-dev, python3-requests, - python3-setuptools + python3-setuptools, + python3-websocket Standards-Version: 4.5.1 Homepage: https://github.com/jellyfin/jellyfin-apiclient-python Rules-Requires-Root: no -- cgit From cda4ddf49185a3b8f3b4c1d718b0bfedcdc1a5ef Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Fri, 23 Jun 2023 09:52:45 -0400 Subject: fix deps 1 --- jellyfin-apiclient-python/debian/control | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'jellyfin-apiclient-python/debian/control') diff --git a/jellyfin-apiclient-python/debian/control b/jellyfin-apiclient-python/debian/control index 4d7989c..25cf9ec 100644 --- a/jellyfin-apiclient-python/debian/control +++ b/jellyfin-apiclient-python/debian/control @@ -15,7 +15,9 @@ Rules-Requires-Root: no Package: jellyfin-apiclient-python Architecture: any Multi-Arch: foreign -Depends: ${misc:Depends}, ${shlibs:Depends} +Depends: ${misc:Depends}, ${shlibs:Depends}, + python3-requests, + python3-websocket Description: python API client for Jellyfin API client from Jellyfin Kodi extracted as a python package so that other users may use the API without -- cgit