forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
beets-1.4.7.ebuild
137 lines (120 loc) · 3.46 KB
/
beets-1.4.7.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{2_7,3_{5,6}} )
PYTHON_REQ_USE="sqlite"
inherit distutils-r1
MY_PV=${PV/_beta/-beta.}
MY_P=${PN}-${MY_PV}
DESCRIPTION="A media library management system for obsessive-compulsive music geeks"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
HOMEPAGE="http://beets.io/ https://pypi.org/project/beets/"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="MIT"
IUSE="badfiles chromaprint doc discogs ffmpeg gstreamer lastfm mpd replaygain test thumbnail webserver"
RDEPEND="
dev-python/jellyfish[${PYTHON_USEDEP}]
dev-python/munkres[${PYTHON_USEDEP}]
>=dev-python/python-musicbrainz-ngs-0.4[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/requests-oauthlib[${PYTHON_USEDEP}]
>=dev-python/six-1.9[${PYTHON_USEDEP}]
dev-python/unidecode[${PYTHON_USEDEP}]
>=media-libs/mutagen-1.33[${PYTHON_USEDEP}]
virtual/python-enum34[${PYTHON_USEDEP}]
badfiles? (
media-libs/flac
media-sound/mp3val
)
chromaprint? (
dev-python/pyacoustid[${PYTHON_USEDEP}]
media-libs/chromaprint[tools]
)
discogs? ( dev-python/discogs-client[${PYTHON_USEDEP}] )
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
ffmpeg? ( media-video/ffmpeg:0[encode] )
lastfm? ( dev-python/pylast[${PYTHON_USEDEP}] )
mpd? (
dev-python/bluelet[${PYTHON_USEDEP}]
dev-python/python-mpd[${PYTHON_USEDEP}]
gstreamer? ( media-plugins/gst-plugins-meta:1.0 )
)
replaygain? (
gstreamer? (
dev-python/pygobject:3[${PYTHON_USEDEP}]
media-libs/gst-plugins-good:1.0
media-plugins/gst-plugins-meta:1.0[ffmpeg]
)
!gstreamer? ( media-sound/mp3gain )
)
thumbnail? (
dev-python/pyxdg[${PYTHON_USEDEP}]
virtual/python-pathlib[${PYTHON_USEDEP}]
|| (
dev-python/pillow[${PYTHON_USEDEP}]
media-gfx/imagemagick
)
)
webserver? (
dev-python/flask[${PYTHON_USEDEP}]
dev-python/flask-cors[${PYTHON_USEDEP}]
)
"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
"
RESTRICT="test" # tests broken in 1.4.3 already
S=${WORKDIR}/${MY_P}
src_prepare() {
rm_use_plugins() {
[[ -n "${1}" ]] || die "rm_use_plugins: No use option given"
local use=${1}
local plugins=${use}
use ${use} && return
einfo "no ${use}:"
[[ $# -gt 1 ]] && plugins="${@:2}"
for arg in ${plugins[@]}; do
einfo " removing ${arg}"
if [[ -e "beetsplug/${arg}.py" ]]; then
rm beetsplug/${arg}.py || die "Unable to remove ${arg} plugin"
fi
if [[ -d "beetsplug/${arg}" ]]; then
rm -r beetsplug/${arg} || die "Unable to remove ${arg} plugin"
fi
sed -e "s:'beetsplug.${arg}',::" -i setup.py || \
die "Unable to disable ${arg} plugin "
done
}
default
rm_use_plugins chromaprint chroma
rm_use_plugins ffmpeg convert
rm_use_plugins lastfm lastgenre lastimport
rm_use_plugins mpd bpd mpdstats
rm_use_plugins webserver web
rm_use_plugins thumbnail thumbnails
# remove plugins that do not have appropriate dependencies installed
for flag in badfiles discogs replaygain; do
rm_use_plugins ${flag}
done
if ! use mpd; then
rm -f test/test_player.py || die
fi
}
python_compile_all() {
use doc && emake -C docs html
}
python_test() {
cd test || die
if ! use webserver; then
rm test_web.py || die "Failed to remove test_web.py"
fi
"${PYTHON}" testall.py || die "Testsuite failed"
}
python_install_all() {
distutils-r1_python_install_all
doman man/beet.1 man/beetsconfig.5
use doc && local HTML_DOCS=( docs/_build/html/. )
einstalldocs
}