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 6265E13828B for ; Sat, 28 May 2016 16:09:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE0E214241; Sat, 28 May 2016 16:09:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 677A114241 for ; Sat, 28 May 2016 16:09:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8C833340AB6 for ; Sat, 28 May 2016 16:09:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30A0115DF for ; Sat, 28 May 2016 16:09:44 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1464450108.8ad1b24dc129b22afce1d63a9e9a83daab0cf2ac.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/pyliblo/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/pyliblo/Manifest media-libs/pyliblo/metadata.xml media-libs/pyliblo/pyliblo-0.10.0.ebuild X-VCS-Directories: media-libs/pyliblo/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 8ad1b24dc129b22afce1d63a9e9a83daab0cf2ac X-VCS-Branch: master Date: Sat, 28 May 2016 16:09:44 +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: ecc44bad-73aa-4dcf-9bb4-5f683b2450d0 X-Archives-Hash: 21a50e4ec67b48818263dfade91dec17 commit: 8ad1b24dc129b22afce1d63a9e9a83daab0cf2ac Author: Karl Linden gmail com> AuthorDate: Fri May 27 12:56:37 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat May 28 15:41:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ad1b24d media-libs/pyliblo: Initial ebuild. Package-Manager: portage-2.3.0_rc1 Closes: https://github.com/gentoo/gentoo/pull/1549 Signed-off-by: Patrice Clement gentoo.org> media-libs/pyliblo/Manifest | 1 + media-libs/pyliblo/metadata.xml | 12 ++++++++++++ media-libs/pyliblo/pyliblo-0.10.0.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/media-libs/pyliblo/Manifest b/media-libs/pyliblo/Manifest new file mode 100644 index 0000000..6496c02 --- /dev/null +++ b/media-libs/pyliblo/Manifest @@ -0,0 +1 @@ +DIST pyliblo-0.10.0.tar.gz 29702 SHA256 fc67f1950b827272b00f9f0dc4ed7113c0ccef0c1c09e9976dead40ebbf1798f SHA512 d2a3d47f6c52d310104256d33fbd5d652ae6bc8cde32c2d3b2f3f407b8a4aba99028e57cd466804d266f63468a6c792760f28a43dbabcfa3330e0a852ee4d4e3 WHIRLPOOL 4f22ac7559251fbf81c7a7cfc1e32f2f3dd981471cd15d7a0b308c3f528f3c53c5f174a3938906b48ce29d0bda8f2291a84fa4e74e069f6ab7dfd4cf5cd8297b diff --git a/media-libs/pyliblo/metadata.xml b/media-libs/pyliblo/metadata.xml new file mode 100644 index 0000000..3212694 --- /dev/null +++ b/media-libs/pyliblo/metadata.xml @@ -0,0 +1,12 @@ + + + + + Karl Linden + karl.j.linden@gmail.com + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/media-libs/pyliblo/pyliblo-0.10.0.ebuild b/media-libs/pyliblo/pyliblo-0.10.0.ebuild new file mode 100644 index 0000000..4e4ce82 --- /dev/null +++ b/media-libs/pyliblo/pyliblo-0.10.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) +inherit distutils-r1 + +DESCRIPTION="A Python wrapper for the liblo OSC library" +HOMEPAGE="http://das.nasophon.de/pyliblo" +SRC_URI="http://das.nasophon.de/download/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND=">=media-libs/liblo-0.27 + ${PYTHON_DEPS}" +DEPEND="${RDEPEND} + dev-python/cython[${PYTHON_USEDEP}]"