mopidy: update to 3.4.2.
This commit is contained in:
parent
19a5b35df6
commit
2e54b13f59
|
@ -1,37 +0,0 @@
|
|||
From 1b7330884b996e13944e9680b0c0d01f4907b6b5 Mon Sep 17 00:00:00 2001
|
||||
From: Stein Magnus Jodal <stein.magnus@jodal.no>
|
||||
Date: Sun, 19 Mar 2023 01:52:12 +0100
|
||||
Subject: [PATCH] Fix extlinks crash in docs build
|
||||
|
||||
Ref https://github.com/sphinx-doc/sphinx/issues/11094
|
||||
---
|
||||
docs/conf.py | 13 ++++++++-----
|
||||
1 file changed, 8 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/docs/conf.py b/docs/conf.py
|
||||
index f17b3c9ae..58bfa70b3 100644
|
||||
--- a/docs/conf.py
|
||||
+++ b/docs/conf.py
|
||||
@@ -131,14 +131,17 @@ def setup(app):
|
||||
# -- Options for extlink extension --------------------------------------------
|
||||
|
||||
extlinks = {
|
||||
- "issue": ("https://github.com/mopidy/mopidy/issues/%s", "#"),
|
||||
- "commit": ("https://github.com/mopidy/mopidy/commit/%s", "commit "),
|
||||
- "js": ("https://github.com/mopidy/mopidy.js/issues/%s", "mopidy.js#"),
|
||||
+ "issue": ("https://github.com/mopidy/mopidy/issues/%s", "#%s"),
|
||||
+ "commit": ("https://github.com/mopidy/mopidy/commit/%s", "commit %s"),
|
||||
+ "js": ("https://github.com/mopidy/mopidy.js/issues/%s", "mopidy.js#%s"),
|
||||
"mpris": (
|
||||
"https://github.com/mopidy/mopidy-mpris/issues/%s",
|
||||
- "mopidy-mpris#",
|
||||
+ "mopidy-mpris#%s",
|
||||
+ ),
|
||||
+ "discuss": (
|
||||
+ "https://discourse.mopidy.com/t/%s",
|
||||
+ "discourse.mopidy.com/t/%s",
|
||||
),
|
||||
- "discuss": ("https://discourse.mopidy.com/t/%s", "discourse.mopidy.com/t/"),
|
||||
}
|
||||
|
||||
|
|
@ -1,8 +1,9 @@
|
|||
# Template file for 'mopidy'
|
||||
pkgname=mopidy
|
||||
version=3.2.0
|
||||
revision=3
|
||||
version=3.4.2
|
||||
revision=1
|
||||
build_style=python3-module
|
||||
make_check_args="--ignore tests/test_help.py"
|
||||
hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme
|
||||
python3-pykka"
|
||||
depends="gst1-python3 gst-plugins-good1 gst-plugins-ugly1 gst-plugins-bad1
|
||||
|
@ -15,7 +16,7 @@ license="Apache-2.0"
|
|||
homepage="https://www.mopidy.com"
|
||||
changelog="https://github.com/mopidy/mopidy/raw/develop/docs/changelog.rst"
|
||||
distfiles="${PYPI_SITE}/M/Mopidy/Mopidy-${version}.tar.gz"
|
||||
checksum=8e9d1aa91a3c40ac43945be58249a7ce27eb955bce9c9e4d07592e809ac37004
|
||||
checksum=ada9ecbfc09eecc8c9e6742a8a4fea1632a134a1ab060527d8aa3d36df0547b6
|
||||
|
||||
conf_files="/etc/mopidy/*.conf"
|
||||
system_accounts="mopidy"
|
||||
|
|
Loading…
Reference in New Issue