Date: Saturday, January 21, 2023 @ 04:16:46 Author: archange Revision: 1387216
FS#77077 add libsoup dependency Modified: quodlibet/trunk/PKGBUILD ----------+ PKGBUILD | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2023-01-21 04:13:12 UTC (rev 1387215) +++ PKGBUILD 2023-01-21 04:16:46 UTC (rev 1387216) @@ -4,12 +4,12 @@ pkgname=quodlibet pkgver=4.5.0 -pkgrel=1 +pkgrel=2 pkgdesc="Music player and music library manager" arch=(any) url="https://quodlibet.readthedocs.io/" license=(GPL2) -depends=(dbus-python gtk3 python-cairo python-feedparser python-gobject python-mutagen) +depends=(dbus-python gtk3 libsoup python-cairo python-feedparser python-gobject python-mutagen) makedepends=(python-sphinx_rtd_theme) # python-raven python-senf are currently vendored checkdepends=(gst-plugins-base gst-plugins-good python-pytest python-xvfbwrapper) @@ -49,8 +49,11 @@ cd ${pkgname}-${pkgver} export PYTHONPATH="${PWD}/build" # not running useless linter checks - # two failures in operon suite https://github.com/quodlibet/quodlibet/issues/3966 - pytest -v --color=yes -k 'not TFlake8 and not test_remove_all and not test_dry_run' + # TOperonEdit.test_remove_all: https://github.com/quodlibet/quodlibet/issues/3966 + # TCoverManager.test_invalid_glob: https://github.com/quodlibet/quodlibet/issues/4021 + pytest -v --color=yes -k 'not TFlake8' \ + --deselect tests/test_operon.py::TOperonEdit::test_remove_all \ + --deselect tests/test_util_cover.py::TCoverManager::test_invalid_glob } package() {
