Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyotherside/
Date: Tue, 01 Aug 2017 12:03:36
Message-Id: 1501588989.9d041f1c8dc3b47cf8df92701df6eb01e32dd6e6.mrueg@gentoo
1 commit: 9d041f1c8dc3b47cf8df92701df6eb01e32dd6e6
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 1 11:57:47 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 1 12:03:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d041f1c
7
8 dev-python/pyotherside: Initial version
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-python/pyotherside/Manifest | 1 +
13 dev-python/pyotherside/metadata.xml | 8 +++++
14 dev-python/pyotherside/pyotherside-1.5.1.ebuild | 40 +++++++++++++++++++++++++
15 3 files changed, 49 insertions(+)
16
17 diff --git a/dev-python/pyotherside/Manifest b/dev-python/pyotherside/Manifest
18 new file mode 100644
19 index 00000000000..9248eff7f57
20 --- /dev/null
21 +++ b/dev-python/pyotherside/Manifest
22 @@ -0,0 +1 @@
23 +DIST pyotherside-1.5.1.tar.gz 181457 SHA256 cb29853d66d2e33f68e28c62c28d054512ab82a763fed8b7b7df9dae722c5de2 SHA512 6f916ce44615c98aa7dffaee073fcb6d7f117996c008c0e3c0e7a8aaedd03f9ba853cc66850112dfc9529d698bd2faeb498a87a0d47c3776ab52b90f83b7067a WHIRLPOOL ad6693efa3aa3a15924010144bb46632fd512fb1af360e56972ddfd28631ff381c06c505acd40b57becb5010c324f4ccc509b3d49ed3716f87b4252027a94405
24
25 diff --git a/dev-python/pyotherside/metadata.xml b/dev-python/pyotherside/metadata.xml
26 new file mode 100644
27 index 00000000000..97df2a00971
28 --- /dev/null
29 +++ b/dev-python/pyotherside/metadata.xml
30 @@ -0,0 +1,8 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>mrueg@g.o</email>
36 + <name>Manuel Rüger</name>
37 + </maintainer>
38 +</pkgmetadata>
39
40 diff --git a/dev-python/pyotherside/pyotherside-1.5.1.ebuild b/dev-python/pyotherside/pyotherside-1.5.1.ebuild
41 new file mode 100644
42 index 00000000000..b30d8b2501d
43 --- /dev/null
44 +++ b/dev-python/pyotherside/pyotherside-1.5.1.ebuild
45 @@ -0,0 +1,40 @@
46 +# Copyright 1999-2017 Gentoo Foundation
47 +# Distributed under the terms of the GNU General Public License v2
48 +
49 +EAPI=5
50 +
51 +PYTHON_COMPAT=( python3_{4,5,6} )
52 +
53 +inherit qmake-utils python-single-r1
54 +
55 +DESCRIPTION="Asynchronous Python 3 Bindings for Qt 5"
56 +HOMEPAGE="http://github.com/thp/pyotherside http://thp.io/2011/pyotherside"
57 +SRC_URI="https://github.com/thp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
58 +
59 +LICENSE="ISC"
60 +SLOT="0"
61 +KEYWORDS="~amd64"
62 +
63 +IUSE=""
64 +
65 +RDEPEND="${PYTHON_DEPS}
66 + dev-qt/qtcore:5
67 + dev-qt/qtdeclarative:5
68 + dev-qt/qtgui:5
69 + dev-qt/qtsvg:5
70 + "
71 +DEPEND="${RDEPEND}"
72 +
73 +RESTRICT="test"
74 +
75 +src_prepare() {
76 + sed -i -e "s/qtquicktests//" pyotherside.pro || die
77 +}
78 +
79 +src_configure() {
80 + eqmake5
81 +}
82 +
83 +src_install() {
84 + emake install INSTALL_ROOT="${D}"
85 +}