Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/quodlibet/
Date: Fri, 01 Jan 2021 01:06:53
Message-Id: 1609463020.2e445758fd87b467d569794fc2462f89b10e520a.mgorny@gentoo
1 commit: 2e445758fd87b467d569794fc2462f89b10e520a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 01:03:40 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 01:03:40 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e445758
7
8 media-sound/quodlibet: Remove old (py3.6)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 media-sound/quodlibet/Manifest | 1 -
13 media-sound/quodlibet/quodlibet-4.2.1.ebuild | 64 ----------------------------
14 2 files changed, 65 deletions(-)
15
16 diff --git a/media-sound/quodlibet/Manifest b/media-sound/quodlibet/Manifest
17 index d25350b42bd..be02153e499 100644
18 --- a/media-sound/quodlibet/Manifest
19 +++ b/media-sound/quodlibet/Manifest
20 @@ -1,2 +1 @@
21 -DIST quodlibet-4.2.1.tar.gz 4908102 BLAKE2B 0c1535e925842d42aafd5ff819b33a5d4527995977dd5d56b84b26462c677d81fcfb6d1de60ce50004a4b4a3eaa69896e430d36d31d904175c38f9deb23c044b SHA512 3817611c887b7c1878ccf852311020ded0a813feec1067f861d1157de6331760166c34992a6e4fe225552ae6ed4472000585fe58a3397faf277ae250f6f3c138
22 DIST quodlibet-4.3.0.tar.gz 5061542 BLAKE2B 31ec24f43a1750d065e14fe69d90a1646382ead13362633c08c9c44b17cb1dca02da37612bd30e1737212098fd26947cf637501ed79b34f03167b85cc11cbdc8 SHA512 6e3cd8bebb8abeb6acde6effb08a439479e293fed18633240a1508a015c083c814fb98722c36d3970917970259095499efeb27e323ab788252940714cae2fddc
23
24 diff --git a/media-sound/quodlibet/quodlibet-4.2.1.ebuild b/media-sound/quodlibet/quodlibet-4.2.1.ebuild
25 deleted file mode 100644
26 index a2e4c41b503..00000000000
27 --- a/media-sound/quodlibet/quodlibet-4.2.1.ebuild
28 +++ /dev/null
29 @@ -1,64 +0,0 @@
30 -# Copyright 2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -PYTHON_COMPAT=( python3_6 )
35 -inherit distutils-r1 xdg-utils
36 -
37 -DESCRIPTION="audio library tagger, manager, and player for GTK+"
38 -HOMEPAGE="https://quodlibet.readthedocs.io/"
39 -SRC_URI="https://github.com/${PN}/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="amd64 ppc ppc64 x86"
44 -IUSE="+dbus gstreamer +udev"
45 -
46 -RDEPEND="dev-libs/keybinder:3[introspection]
47 - dev-python/feedparser[${PYTHON_USEDEP}]
48 - dev-python/pygobject:3[${PYTHON_USEDEP}]
49 - >=media-libs/mutagen-1.32[${PYTHON_USEDEP}]
50 - net-libs/libsoup[introspection]
51 - x11-libs/gtk+[introspection]
52 - gstreamer? (
53 - media-libs/gstreamer:1.0
54 - media-libs/gst-plugins-base:1.0
55 - media-libs/gst-plugins-good:1.0
56 - media-plugins/gst-plugins-meta:1.0
57 - )
58 - !gstreamer? ( media-libs/xine-lib )
59 - dbus? (
60 - app-misc/media-player-info
61 - dev-python/dbus-python[${PYTHON_USEDEP}]
62 - )
63 - udev? ( virtual/udev )"
64 -DEPEND="dev-util/intltool"
65 -
66 -S="${WORKDIR}/${PN}-release-${PV}/${PN}"
67 -
68 -src_prepare() {
69 - local qlconfig=${PN}/config.py
70 -
71 - if ! use gstreamer; then
72 - sed -i -e '/backend/s:gstbe:xinebe:' ${qlconfig} || die
73 - fi
74 -
75 - sed -i -e '/gst_pipeline/s:"":"alsasink":' ${qlconfig} || die
76 -
77 - distutils-r1_src_prepare
78 -}
79 -
80 -src_install() {
81 - distutils-r1_src_install
82 - dodoc NEWS README
83 -}
84 -
85 -pkg_postinst() {
86 - xdg_desktop_database_update
87 - xdg_icon_cache_update
88 -}
89 -
90 -pkg_postrm() {
91 - xdg_desktop_database_update
92 - xdg_icon_cache_update
93 -}