You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/gpodder/gpodder-3.10.21.ebuild

75 lines
1.8 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8,9} )
PYTHON_REQ_USE="sqlite"
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_USE_SETUPTOOLS=no
inherit distutils-r1 optfeature xdg
DESCRIPTION="A free cross-platform podcast aggregator"
HOMEPAGE="https://gpodder.github.io/"
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="+dbus bluetooth kernel_linux mtp test"
RESTRICT="!test? ( test )"
# As in Fedora: re-enable >=dev-python/eyeD3-0.7[${PYTHON_USEDEP}] and
# ipod? ( media-libs/libgpod[python,${PYTHON_USEDEP}] ) once they
# support python3
COMMON_DEPEND="
$(python_gen_cond_dep '
dev-python/html5lib[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
>=dev-python/pygobject-3.22.0:3[${PYTHON_USEDEP}]
>=dev-python/podcastparser-0.6.0[${PYTHON_USEDEP}]
>=dev-python/mygpoclient-1.8[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
')
bluetooth? ( net-wireless/bluez )
mtp? ( >=media-libs/libmtp-1.0.0:= )
"
RDEPEND="${COMMON_DEPEND}
kernel_linux? ( sys-apps/iproute2 )
"
DEPEND="${COMMON_DEPEND}
dev-util/desktop-file-utils
dev-util/intltool
sys-apps/help2man
test? (
$(python_gen_cond_dep '
dev-python/minimock[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-localserver[${PYTHON_USEDEP}]
')
)
"
src_prepare() {
default
sed -i -e 's:--cov=gpodder::' makefile || die
}
src_test() {
emake releasetest
}
src_install() {
emake PYTHON=${EPYTHON} DESTDIR="${D}" install
distutils-r1_src_install
}
pkg_postinst() {
xdg_pkg_postinst
optfeature "for the youtube-dl extension" net-misc/youtube-dl
}