From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 020F115838C for ; Wed, 17 Jan 2024 06:34:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D56CE2A95; Wed, 17 Jan 2024 06:34:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1FBD7E2A95 for ; Wed, 17 Jan 2024 06:34:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 661B7343361 for ; Wed, 17 Jan 2024 06:34:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 001101454 for ; Wed, 17 Jan 2024 06:34:49 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1705473222.40584e779a9a95ff57bcdad1f23b3854818945e0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/quodlibet/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/quodlibet/quodlibet-4.6.0-r1.ebuild X-VCS-Directories: media-sound/quodlibet/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 40584e779a9a95ff57bcdad1f23b3854818945e0 X-VCS-Branch: master Date: Wed, 17 Jan 2024 06:34:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 01345f6e-c108-42ca-83ba-749f4bf2db43 X-Archives-Hash: 07b89d24297db2ce90991d736fc7e1ec commit: 40584e779a9a95ff57bcdad1f23b3854818945e0 Author: Cristian Othón Martínez Vera cfuga mx> AuthorDate: Tue Jan 16 23:16:21 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jan 17 06:33:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40584e77 media-sound/quodlibet: fix dependency on correct net-libs/libsoup slot Since version 4.6.0, Quod Libet depends on net-libs/libsoup slot 3 https://github.com/quodlibet/quodlibet/blob/quodlibet-4.6/NEWS.rst Signed-off-by: Cristian Othón Martínez Vera cfuga.mx> Closes: https://bugs.gentoo.org/915616 Closes: https://github.com/gentoo/gentoo/pull/34847 Signed-off-by: Sam James gentoo.org> media-sound/quodlibet/quodlibet-4.6.0-r1.ebuild | 58 +++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/media-sound/quodlibet/quodlibet-4.6.0-r1.ebuild b/media-sound/quodlibet/quodlibet-4.6.0-r1.ebuild new file mode 100644 index 000000000000..f61de114b911 --- /dev/null +++ b/media-sound/quodlibet/quodlibet-4.6.0-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9..12} ) +DISTUTILS_USE_SETUPTOOLS=no +inherit distutils-r1 xdg + +DESCRIPTION="audio library tagger, manager, and player for GTK+" +HOMEPAGE="https://quodlibet.readthedocs.io/" +SRC_URI="https://github.com/${PN}/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="+dbus gstreamer +udev" + +RDEPEND="dev-libs/keybinder:3[introspection] + dev-python/feedparser[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + media-libs/mutagen[${PYTHON_USEDEP}] + net-libs/libsoup:3.0[introspection] + x11-libs/gtk+[introspection] + gstreamer? ( + media-libs/gstreamer:1.0 + media-libs/gst-plugins-base:1.0 + media-libs/gst-plugins-good:1.0 + media-plugins/gst-plugins-meta:1.0 + ) + !gstreamer? ( media-libs/xine-lib ) + dbus? ( + app-misc/media-player-info + dev-python/dbus-python[${PYTHON_USEDEP}] + ) + udev? ( virtual/udev )" +DEPEND="dev-util/intltool" + +S="${WORKDIR}/${PN}-release-${PV}" + +src_prepare() { + local qlconfig=quodlibet/config.py + + if ! use gstreamer; then + sed -i -e '/backend/s:gstbe:xinebe:' ${qlconfig} || die + fi + + sed -i -e '/gst_pipeline/s:"":"alsasink":' ${qlconfig} || die + + distutils-r1_src_prepare +} + +src_install() { + distutils-r1_src_install + dodoc README.rst + + # fix location of desktop file + mv "${ED}/usr/share/appdata" "${ED}/usr/share/metainfo" || die "Failed to fix desktop file location" +}