Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pyhoca-gui/
Date: Mon, 30 Dec 2019 14:00:26
Message-Id: 1577714248.84e612f4aa975f97ada1715d9be50da019fab5e3.voyageur@gentoo
1 commit: 84e612f4aa975f97ada1715d9be50da019fab5e3
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 30 13:55:36 2019 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 30 13:57:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e612f4
7
8 net-misc/pyhoca-gui: 0.6.1.0 bump
9
10 Update for python 3 and libnotify dependency
11
12 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
13
14 net-misc/pyhoca-gui/Manifest | 1 +
15 net-misc/pyhoca-gui/pyhoca-gui-0.6.1.0.ebuild | 35 +++++++++++++++++++++++++++
16 2 files changed, 36 insertions(+)
17
18 diff --git a/net-misc/pyhoca-gui/Manifest b/net-misc/pyhoca-gui/Manifest
19 index 3e929f31203..9f201a480ad 100644
20 --- a/net-misc/pyhoca-gui/Manifest
21 +++ b/net-misc/pyhoca-gui/Manifest
22 @@ -1,2 +1,3 @@
23 DIST pyhoca-gui-0.5.0.8.tar.gz 2064483 BLAKE2B 63bca5be8673ef4e274caf4e0813b73f5dc8af7818b7638b2ac7411bb1598272bab573bc55c6c5e48fc45cc185bad907594b99ee0c96546683ecd8dd1ef1e3f1 SHA512 35bcbe35056d718ec5b58733b8569fd40cd6843a6661cc19deed02287cf65e03b4812fc82bdb0d54b12a78d5547456463e8adf236d4a7f04e11d0d462fe3eded
24 DIST pyhoca-gui-0.5.1.0.tar.gz 2098593 BLAKE2B 942caadb43654dbd65cfb50722f17b93b2becd410b90fb888a5133974b66ae377ab568204288e3a72441b74ad3e08a31190d67452a41086802177cc6a8f01406 SHA512 ae4287ccf2aadc4a6557c3bf37d01eb2cdfa542803ece41df02b7b816ba5b0be918231b40dba3c39a850064ae39907befdef1b80180649446b49fc975abbe312
25 +DIST pyhoca-gui-0.6.1.0.tar.gz 2098973 BLAKE2B fdd145bb8ba67d70571a2244bded2f5c30382725c21747778c7490a98cd85dd7e872aec9ba539d407764a9a3a38d590aed5742268ebc38aa9cfaa3fc5b5a679c SHA512 d2730aa52afd4a835e593f3d8bde84435abb67aa490bb05807353d8d102c1d85564c21decbaf04e5cf54ef4a376247cf4a5ba1f7c9baf96149dbea9e583ea9cb
26
27 diff --git a/net-misc/pyhoca-gui/pyhoca-gui-0.6.1.0.ebuild b/net-misc/pyhoca-gui/pyhoca-gui-0.6.1.0.ebuild
28 new file mode 100644
29 index 00000000000..84519d9bd08
30 --- /dev/null
31 +++ b/net-misc/pyhoca-gui/pyhoca-gui-0.6.1.0.ebuild
32 @@ -0,0 +1,35 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{5,6,7} )
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="X2Go graphical client applet"
42 +HOMEPAGE="http://www.x2go.org"
43 +SRC_URI="http://code.x2go.org/releases/source/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="AGPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +
50 +RDEPEND="dev-python/pycups[${PYTHON_USEDEP}]
51 + dev-python/setproctitle[${PYTHON_USEDEP}]
52 + dev-python/wxpython[${PYTHON_USEDEP}]
53 + >=net-misc/python-x2go-0.6.1.1[${PYTHON_USEDEP}]
54 + x11-libs/libnotify"
55 +DEPEND="${DEPEND}
56 + dev-python/python-distutils-extra[${PYTHON_USEDEP}]"
57 +
58 +python_install() {
59 + distutils-r1_python_install
60 + python_doscript ${PN}
61 +}
62 +
63 +python_install_all() {
64 + distutils-r1_python_install_all
65 + doman man/man1/*
66 + find "${ED}" -name '*.pth' -delete || die
67 +}