Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/pyliblo/
Date: Sat, 28 May 2016 16:09:51
Message-Id: 1464450108.8ad1b24dc129b22afce1d63a9e9a83daab0cf2ac.monsieurp@gentoo
1 commit: 8ad1b24dc129b22afce1d63a9e9a83daab0cf2ac
2 Author: Karl Linden <karl.j.linden <AT> gmail <DOT> com>
3 AuthorDate: Fri May 27 12:56:37 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat May 28 15:41:48 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ad1b24d
7
8 media-libs/pyliblo: Initial ebuild.
9
10 Package-Manager: portage-2.3.0_rc1
11 Closes: https://github.com/gentoo/gentoo/pull/1549
12
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 media-libs/pyliblo/Manifest | 1 +
16 media-libs/pyliblo/metadata.xml | 12 ++++++++++++
17 media-libs/pyliblo/pyliblo-0.10.0.ebuild | 22 ++++++++++++++++++++++
18 3 files changed, 35 insertions(+)
19
20 diff --git a/media-libs/pyliblo/Manifest b/media-libs/pyliblo/Manifest
21 new file mode 100644
22 index 0000000..6496c02
23 --- /dev/null
24 +++ b/media-libs/pyliblo/Manifest
25 @@ -0,0 +1 @@
26 +DIST pyliblo-0.10.0.tar.gz 29702 SHA256 fc67f1950b827272b00f9f0dc4ed7113c0ccef0c1c09e9976dead40ebbf1798f SHA512 d2a3d47f6c52d310104256d33fbd5d652ae6bc8cde32c2d3b2f3f407b8a4aba99028e57cd466804d266f63468a6c792760f28a43dbabcfa3330e0a852ee4d4e3 WHIRLPOOL 4f22ac7559251fbf81c7a7cfc1e32f2f3dd981471cd15d7a0b308c3f528f3c53c5f174a3938906b48ce29d0bda8f2291a84fa4e74e069f6ab7dfd4cf5cd8297b
27
28 diff --git a/media-libs/pyliblo/metadata.xml b/media-libs/pyliblo/metadata.xml
29 new file mode 100644
30 index 0000000..3212694
31 --- /dev/null
32 +++ b/media-libs/pyliblo/metadata.xml
33 @@ -0,0 +1,12 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="person">
38 + <name>Karl Linden</name>
39 + <email>karl.j.linden@×××××.com</email>
40 + </maintainer>
41 + <maintainer type="project">
42 + <email>proxy-maint@g.o</email>
43 + <name>Proxy Maintainers</name>
44 + </maintainer>
45 +</pkgmetadata>
46
47 diff --git a/media-libs/pyliblo/pyliblo-0.10.0.ebuild b/media-libs/pyliblo/pyliblo-0.10.0.ebuild
48 new file mode 100644
49 index 0000000..4e4ce82
50 --- /dev/null
51 +++ b/media-libs/pyliblo/pyliblo-0.10.0.ebuild
52 @@ -0,0 +1,22 @@
53 +# Copyright 1999-2016 Gentoo Foundation
54 +# Distributed under the terms of the GNU General Public License v2
55 +# $Id$
56 +
57 +EAPI="6"
58 +
59 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
60 +inherit distutils-r1
61 +
62 +DESCRIPTION="A Python wrapper for the liblo OSC library"
63 +HOMEPAGE="http://das.nasophon.de/pyliblo"
64 +SRC_URI="http://das.nasophon.de/download/${P}.tar.gz"
65 +
66 +LICENSE="LGPL-2.1"
67 +SLOT="0"
68 +KEYWORDS="~amd64 ~x86"
69 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
70 +
71 +RDEPEND=">=media-libs/liblo-0.27
72 + ${PYTHON_DEPS}"
73 +DEPEND="${RDEPEND}
74 + dev-python/cython[${PYTHON_USEDEP}]"