Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyotherside/
Date: Fri, 01 Feb 2019 03:00:22
Message-Id: 1548989996.e1a8b1ffc69692ff05e7dc0eb61c668f6e9c9c73.gokturk@gentoo
1 commit: e1a8b1ffc69692ff05e7dc0eb61c668f6e9c9c73
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 1 02:59:11 2019 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 1 02:59:56 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1a8b1ff
7
8 dev-python/pyotherside: bump to 1.5.4
9
10 Package-Manager: Portage-2.3.52, Repoman-2.3.12
11 Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
12
13 dev-python/pyotherside/Manifest | 1 +
14 dev-python/pyotherside/pyotherside-1.5.4.ebuild | 40 +++++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/dev-python/pyotherside/Manifest b/dev-python/pyotherside/Manifest
18 index 03372d135af..5baf5097066 100644
19 --- a/dev-python/pyotherside/Manifest
20 +++ b/dev-python/pyotherside/Manifest
21 @@ -1 +1,2 @@
22 DIST pyotherside-1.5.3.tar.gz 181811 BLAKE2B ce2b7c4b9490e3d30e0e8a3911907fe3ab5aa9f812d29cf4f633957d5ade5261ab7e3691751b0bc696459080089dfec0439b970ac7ad0bd36aa22eb0c9c87112 SHA512 ff6aa43e72f5492b18403559514e6fdf0d2cee0965556fcafe5fe394b654a7dd2fc3a7d64d4b8f9c0ebf95485821b77022407772b2414539f2ab287e1fb01e93
23 +DIST pyotherside-1.5.4.tar.gz 183745 BLAKE2B 3dad2486dbc3d2632999aff0a7a7af41f6fefcae011bd1dd92b491b4403bbd62adb9a8520af627d5f96644f4fb25e89ee8fb49277723d5f80521d2add984008d SHA512 feaf95e0c981a8fb8b3a57926f48f803584a371752e7f1d2f3c739ee220960df33ad4ca2a38322f3e56d4f8fde193bd7342105303d847b2f532937e8bf2c3b65
24
25 diff --git a/dev-python/pyotherside/pyotherside-1.5.4.ebuild b/dev-python/pyotherside/pyotherside-1.5.4.ebuild
26 new file mode 100644
27 index 00000000000..5950a1d6de8
28 --- /dev/null
29 +++ b/dev-python/pyotherside/pyotherside-1.5.4.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python3_{4,5,6} )
37 +
38 +inherit qmake-utils python-single-r1
39 +
40 +DESCRIPTION="Asynchronous Python 3 Bindings for Qt 5"
41 +HOMEPAGE="https://github.com/thp/pyotherside https://thp.io/2011/pyotherside/"
42 +SRC_URI="https://github.com/thp/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="ISC"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +# Requires active X display
48 +RESTRICT="test"
49 +
50 +RDEPEND="${PYTHON_DEPS}
51 + dev-qt/qtcore:5
52 + dev-qt/qtdeclarative:5
53 + dev-qt/qtgui:5
54 + dev-qt/qtsvg:5
55 + "
56 +DEPEND="${RDEPEND}"
57 +
58 +src_prepare() {
59 + sed -i -e "s/qtquicktests//" pyotherside.pro || die
60 +
61 + default
62 +}
63 +
64 +src_configure() {
65 + eqmake5
66 +}
67 +
68 +src_install() {
69 + emake install INSTALL_ROOT="${D}"
70 +}