diff --git a/.SRCINFO b/.SRCINFO index 62dd876..483c6f5 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,16 +1,17 @@ pkgbase = jellyfin-mpv-shim pkgdesc = Cast media from Jellyfin Mobile and Web apps to MPV. (Unofficial) - pkgver = 1.7.1 + pkgver = 1.8.0 pkgrel = 1 url = https://github.com/iwalton3/jellyfin-mpv-shim arch = any license = MIT makedepends = python-setuptools + makedepends = gettext depends = mpv depends = python>=3.6 depends = python-mpv depends = python-mpv-jsonipc>=1.1.9 - depends = python-jellyfin-apiclient>=1.6.0 + depends = python-jellyfin-apiclient>=1.6.1 depends = tk optdepends = python-pystray: systray support optdepends = python-jinja: display mirroring support @@ -21,8 +22,8 @@ pkgbase = jellyfin-mpv-shim optdepends = svp: SmoothVideo Project server optdepends = mpv-shim-default-shaders: default shader pack optdepends = python-pypresence: Discord Rich Presence integration - source = jellyfin-mpv-shim-1.7.1.tar.gz::https://github.com/iwalton3/jellyfin-mpv-shim/archive/v1.7.1.tar.gz - sha256sums = 377768fbf3051a63272a3582fe0eb0d72cff8c99fbf68248b8caa545fe8a579c + source = jellyfin-mpv-shim-1.8.0.tar.gz::https://github.com/iwalton3/jellyfin-mpv-shim/archive/v1.8.0.tar.gz + sha256sums = adb6856441418bf43013a915f30eef83d0d7f9cfcbb80f0afa5e3f7dcddfc232 pkgname = jellyfin-mpv-shim diff --git a/PKGBUILD b/PKGBUILD index 8e464a3..a099a96 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,14 +1,14 @@ # Maintainer: Marius Lindvall <(firstname) {cat} varden {dog} info> pkgname=jellyfin-mpv-shim -pkgver='1.7.1' +pkgver='1.8.0' pkgrel=1 pkgdesc="Cast media from Jellyfin Mobile and Web apps to MPV. (Unofficial)" arch=('any') url='https://github.com/iwalton3/jellyfin-mpv-shim' license=('MIT') -depends=('mpv' 'python>=3.6' 'python-mpv' 'python-mpv-jsonipc>=1.1.9' 'python-jellyfin-apiclient>=1.6.0' 'tk') -makedepends=('python-setuptools') +depends=('mpv' 'python>=3.6' 'python-mpv' 'python-mpv-jsonipc>=1.1.9' 'python-jellyfin-apiclient>=1.6.1' 'tk') +makedepends=('python-setuptools' 'gettext') optdepends=('python-pystray: systray support' 'python-jinja: display mirroring support' 'python-pywebview>=3.3.1: desktop client and display mirroring support' @@ -19,10 +19,14 @@ optdepends=('python-pystray: systray support' 'mpv-shim-default-shaders: default shader pack' 'python-pypresence: Discord Rich Presence integration') source=("$pkgname-$pkgver.tar.gz::https://github.com/iwalton3/jellyfin-mpv-shim/archive/v$pkgver.tar.gz") -sha256sums=('377768fbf3051a63272a3582fe0eb0d72cff8c99fbf68248b8caa545fe8a579c') +sha256sums=('adb6856441418bf43013a915f30eef83d0d7f9cfcbb80f0afa5e3f7dcddfc232') build() { cd "${srcdir}/jellyfin-mpv-shim-${pkgver}" + find -iname '*.po' | while read -r _file + do + msgfmt "$_file" -o "${_file%.*}.mo" + done python setup.py build }