commit: 4172429ae1c19943341d5082c8ac7a5f5a9f5b8f Author: David Roman <davidroman96 <AT> gmail <DOT> com> AuthorDate: Wed Sep 1 21:46:22 2021 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Wed Sep 1 21:47:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4172429a
media-sound/mopidy: new package Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: David Roman <davidroman96 <AT> gmail.com> media-sound/mopidy/Manifest | 1 + media-sound/mopidy/metadata.xml | 8 +++++++ media-sound/mopidy/mopidy-3.2.0.ebuild | 40 ++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+) diff --git a/media-sound/mopidy/Manifest b/media-sound/mopidy/Manifest new file mode 100644 index 000000000..0bb1f2684 --- /dev/null +++ b/media-sound/mopidy/Manifest @@ -0,0 +1 @@ +DIST mopidy-3.2.0.tar.gz 438255 BLAKE2B afab74b9b8217a2481b711708ada81b79de8b2eb2be5892378f672690098d82fb27f715d95fd585cf76b84be2cd4cc07d1cd2d8fc5d42ef4e1710c5a67e08f7b SHA512 cbca5c2f6784754c06f9f6fd80aa0379b606ed4a52f31dfa27c165869cf65171b6203f683ee1150319ab51feae45dadaaa338e22d26af3511cdf56e8f3d81145 diff --git a/media-sound/mopidy/metadata.xml b/media-sound/mopidy/metadata.xml new file mode 100644 index 000000000..01c1fc848 --- /dev/null +++ b/media-sound/mopidy/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>David Roman</name> + </maintainer> +</pkgmetadata> diff --git a/media-sound/mopidy/mopidy-3.2.0.ebuild b/media-sound/mopidy/mopidy-3.2.0.ebuild new file mode 100644 index 000000000..274354690 --- /dev/null +++ b/media-sound/mopidy/mopidy-3.2.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{8,9,10} ) + +inherit distutils-r1 + +DESCRIPTION="An extensible music server written in Python." +HOMEPAGE="https://mopidy.com/" +SRC_URI="https://github.com/mopidy/mopidy/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64" +LICENSE="Apache-2.0" +SLOT="0" + +RDEPEND=" + dev-python/gst-python + media-plugins/gst-plugins-meta[mp3,ogg,flac] + dev-python/pykka[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + www-servers/tornado[${PYTHON_USEDEP}] +" + +DEPEND=" + ${RDEPEND} + + test? ( + dev-python/responses[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + # Ignore broken tests (due to network-sandbox) + pytest -v --ignore tests/stream/test_playback.py || die +}
