From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A3588138D03 for ; Wed, 1 Jul 2015 01:35:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F32EFE087E; Wed, 1 Jul 2015 01:35:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 910C4E087E for ; Wed, 1 Jul 2015 01:35:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 620AC340753 for ; Wed, 1 Jul 2015 01:35:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A36E7738 for ; Wed, 1 Jul 2015 01:35:20 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1435714510.5dc824dcd2417ba37faa9609caca1f14355da713.mrueg@gentoo> Subject: [gentoo-commits] dev/mrueg:master commit in: media-plugins/mopidy-mpris/ X-VCS-Repository: dev/mrueg X-VCS-Files: media-plugins/mopidy-mpris/Manifest media-plugins/mopidy-mpris/metadata.xml media-plugins/mopidy-mpris/mopidy-mpris-1.2.0.ebuild X-VCS-Directories: media-plugins/mopidy-mpris/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 5dc824dcd2417ba37faa9609caca1f14355da713 X-VCS-Branch: master Date: Wed, 1 Jul 2015 01:35:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 48d70b5d-ce1a-483c-b8e4-a9d01ff9ac9d X-Archives-Hash: e6988eebbe6daa4cb29e1a06c54091ad commit: 5dc824dcd2417ba37faa9609caca1f14355da713 Author: Manuel Rüger gentoo org> AuthorDate: Wed Jul 1 01:35:10 2015 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Wed Jul 1 01:35:10 2015 +0000 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=5dc824dc [media-plugins/mopidy-mpris] Initial version. Package-Manager: portage-2.2.20 media-plugins/mopidy-mpris/Manifest | 1 + media-plugins/mopidy-mpris/metadata.xml | 8 ++++++ .../mopidy-mpris/mopidy-mpris-1.2.0.ebuild | 30 ++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/media-plugins/mopidy-mpris/Manifest b/media-plugins/mopidy-mpris/Manifest new file mode 100644 index 0000000..c16ecd2 --- /dev/null +++ b/media-plugins/mopidy-mpris/Manifest @@ -0,0 +1 @@ +DIST mopidy-mpris-1.2.0.tar.gz 20323 SHA256 b72da27ea8ba30c9b516eb9ea07205e361a305c27e6b7d27079c85a2eb64e477 SHA512 80899891f59246efb91be18822b72ffee596176cce40e39fccf2b409d56d35dacfd6008898ca074225d370ce5de7f4f7e9171d22db8ecce4cb8b5b617ab9e0ae WHIRLPOOL 3dd59c4afc00ae8198a29c0386692c2bcbc90ee00b8a509e7fff7be61f76cff95bed9460774049b95599b0f587ac92d74733c2faa0a2a8dada359ac42a9e7658 diff --git a/media-plugins/mopidy-mpris/metadata.xml b/media-plugins/mopidy-mpris/metadata.xml new file mode 100644 index 0000000..bfcb697 --- /dev/null +++ b/media-plugins/mopidy-mpris/metadata.xml @@ -0,0 +1,8 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + + diff --git a/media-plugins/mopidy-mpris/mopidy-mpris-1.2.0.ebuild b/media-plugins/mopidy-mpris/mopidy-mpris-1.2.0.ebuild new file mode 100644 index 0000000..ab1905c --- /dev/null +++ b/media-plugins/mopidy-mpris/mopidy-mpris-1.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=(python2_7) + +inherit vcs-snapshot distutils-r1 + +DESCRIPTION="Mopidy extension for controlling Mopidy through the MPRIS D-Bus interface" +HOMEPAGE="https://github.com/mopidy/mopidy-mpris" +SRC_URI="https://github.com/mopidy/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND="dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/pykka[${PYTHON_USEDEP}] + media-sound/mopidy[${PYTHON_USEDEP}]" + +DEPEND="test? ( ${RDEPEND} + >=dev-python/mock-1.0[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] ) + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + py.test || die +}