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: Mon, 16 Oct 2017 19:35:23
Message-Id: 1508182500.cb26b30a4eef99c6098f74a7963911ef8ca0c23f.mrueg@gentoo
1 commit: cb26b30a4eef99c6098f74a7963911ef8ca0c23f
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 16 19:35:00 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 16 19:35:00 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb26b30a
7
8 dev-python/pyotherside: Version bump to 1.5.3
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 dev-python/pyotherside/Manifest | 1 +
13 dev-python/pyotherside/pyotherside-1.5.3.ebuild | 40 +++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-python/pyotherside/Manifest b/dev-python/pyotherside/Manifest
17 index 9248eff7f57..1eac1405e80 100644
18 --- a/dev-python/pyotherside/Manifest
19 +++ b/dev-python/pyotherside/Manifest
20 @@ -1 +1,2 @@
21 DIST pyotherside-1.5.1.tar.gz 181457 SHA256 cb29853d66d2e33f68e28c62c28d054512ab82a763fed8b7b7df9dae722c5de2 SHA512 6f916ce44615c98aa7dffaee073fcb6d7f117996c008c0e3c0e7a8aaedd03f9ba853cc66850112dfc9529d698bd2faeb498a87a0d47c3776ab52b90f83b7067a WHIRLPOOL ad6693efa3aa3a15924010144bb46632fd512fb1af360e56972ddfd28631ff381c06c505acd40b57becb5010c324f4ccc509b3d49ed3716f87b4252027a94405
22 +DIST pyotherside-1.5.3.tar.gz 181811 SHA256 00049d5f42cac448368bc2a521edb8de36bb6d2a624e195b7f1004236758b805 SHA512 ff6aa43e72f5492b18403559514e6fdf0d2cee0965556fcafe5fe394b654a7dd2fc3a7d64d4b8f9c0ebf95485821b77022407772b2414539f2ab287e1fb01e93 WHIRLPOOL 1b515d4d64e47c015979a70214a99151d8449fc9991bccdc524ee64c2d2e36159c61c0b8191054e2062ffe4f86b33b6d370ba8932960a8b0ef0889f76961b999
23
24 diff --git a/dev-python/pyotherside/pyotherside-1.5.3.ebuild b/dev-python/pyotherside/pyotherside-1.5.3.ebuild
25 new file mode 100644
26 index 00000000000..4893f2c2428
27 --- /dev/null
28 +++ b/dev-python/pyotherside/pyotherside-1.5.3.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +
35 +PYTHON_COMPAT=( python3_{4,5,6} )
36 +
37 +inherit qmake-utils python-single-r1
38 +
39 +DESCRIPTION="Asynchronous Python 3 Bindings for Qt 5"
40 +HOMEPAGE="https://github.com/thp/pyotherside http://thp.io/2011/pyotherside"
41 +SRC_URI="https://github.com/thp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="ISC"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +
47 +IUSE=""
48 +
49 +RDEPEND="${PYTHON_DEPS}
50 + dev-qt/qtcore:5
51 + dev-qt/qtdeclarative:5
52 + dev-qt/qtgui:5
53 + dev-qt/qtsvg:5
54 + "
55 +DEPEND="${RDEPEND}"
56 +
57 +RESTRICT="test"
58 +
59 +src_prepare() {
60 + sed -i -e "s/qtquicktests//" pyotherside.pro || die
61 +}
62 +
63 +src_configure() {
64 + eqmake5
65 +}
66 +
67 +src_install() {
68 + emake install INSTALL_ROOT="${D}"
69 +}