Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/exaile/
Date: Fri, 01 Jul 2022 11:09:08
Message-Id: 1656673733.f3b6aee5f4be9f1d92a3047af7db6e4e0762578c.fordfrog@gentoo
1 commit: f3b6aee5f4be9f1d92a3047af7db6e4e0762578c
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 1 11:08:53 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 1 11:08:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3b6aee5
7
8 media-sound/exaile: dropped obsolete 4.1.1
9
10 Closes: https://bugs.gentoo.org/846062
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-sound/exaile/exaile-4.1.1.ebuild | 72 ----------------------------------
14 1 file changed, 72 deletions(-)
15
16 diff --git a/media-sound/exaile/exaile-4.1.1.ebuild b/media-sound/exaile/exaile-4.1.1.ebuild
17 deleted file mode 100644
18 index de0775df2e39..000000000000
19 --- a/media-sound/exaile/exaile-4.1.1.ebuild
20 +++ /dev/null
21 @@ -1,72 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -PYTHON_COMPAT=( python3_{8..9} )
28 -inherit python-single-r1 xdg
29 -
30 -if [[ ${PV} == "9999" ]]; then
31 - inherit git-r3
32 - EGIT_REPO_URI="https://github.com/exaile/exaile.git"
33 -else
34 - SRC_URI="https://github.com/${PN}/${PN}/archive/${PV/_/-}/${PN}-${PV/_/}.tar.gz"
35 - KEYWORDS="~amd64 ~x86"
36 - S="${WORKDIR}/${PN}-${PV/_/-}"
37 -fi
38 -
39 -DESCRIPTION="GTK+ based media player aiming to be similar to Amarok"
40 -HOMEPAGE="https://www.exaile.org/"
41 -LICENSE="GPL-2 GPL-3"
42 -SLOT="0"
43 -# IUSE+=cddb if have dev-python/cddb-py
44 -IUSE="libnotify nls scrobbler"
45 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
46 -
47 -BDEPEND="
48 - nls? (
49 - dev-util/intltool
50 - sys-devel/gettext
51 - )
52 -"
53 -RDEPEND="${PYTHON_DEPS}
54 - >=media-libs/gst-plugins-base-1.6:1.0
55 - >=media-libs/gst-plugins-good-1.4:1.0
56 - media-plugins/gst-plugins-meta:1.0
57 - >=x11-libs/gtk+-3.10:3[introspection]
58 - libnotify? ( >=x11-libs/libnotify-0.7[introspection] )
59 - $(python_gen_cond_dep '
60 - dev-python/bsddb3[${PYTHON_USEDEP}]
61 - dev-python/dbus-python[${PYTHON_USEDEP}]
62 - dev-python/gst-python:1.0[${PYTHON_USEDEP}]
63 - dev-python/pycairo[${PYTHON_USEDEP}]
64 - >=dev-python/pygobject-3.13.2:3[${PYTHON_USEDEP}]
65 - >=media-libs/mutagen-1.10[${PYTHON_USEDEP}]
66 - scrobbler? ( dev-python/pylast[${PYTHON_USEDEP}] )
67 - ')
68 -"
69 -
70 -RESTRICT="test" #315589
71 -
72 -PATCHES=(
73 - "${FILESDIR}/${P}-metainfo.patch"
74 -)
75 -
76 -pkg_setup() {
77 - python-single-r1_pkg_setup
78 -}
79 -
80 -src_compile() {
81 - use nls && emake locale
82 -}
83 -
84 -src_install() {
85 - emake \
86 - PREFIX=/usr \
87 - LIBINSTALLDIR=/usr/$(get_libdir) \
88 - DESTDIR="${D}" \
89 - install$(use nls || echo _no_locale)
90 -
91 - python_optimize "${D}/usr/$(get_libdir)/${PN}"
92 - python_optimize "${D}/usr/share/${PN}"
93 -}