Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/pyhoca-cli: metadata.xml ChangeLog pyhoca-cli-0.5.0.1.ebuild
Date: Thu, 27 Nov 2014 14:16:57
Message-Id: 20141127141653.DBC61B053@oystercatcher.gentoo.org
1 voyageur 14/11/27 14:16:53
2
3 Added: metadata.xml ChangeLog pyhoca-cli-0.5.0.1.ebuild
4 Log:
5 Initial commit
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
8
9 Revision Changes Path
10 1.1 net-misc/pyhoca-cli/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/pyhoca-cli/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/pyhoca-cli/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>nx</herd>
21 <longdescription>
22 PyHoca-CLI is a client implementation for X2Go using the project's Python API (Python module). PyHoca-CLI can be operated completely from the command line and the goal is to reflect the full functionality spectrum of Python X2Go.
23 </longdescription>
24 </pkgmetadata>
25
26
27
28 1.1 net-misc/pyhoca-cli/ChangeLog
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/pyhoca-cli/ChangeLog?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/pyhoca-cli/ChangeLog?rev=1.1&content-type=text/plain
32
33 Index: ChangeLog
34 ===================================================================
35 # ChangeLog for net-misc/pyhoca-cli
36 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
37 # $Header: /var/cvsroot/gentoo-x86/net-misc/pyhoca-cli/ChangeLog,v 1.1 2014/11/27 14:16:53 voyageur Exp $
38
39 *pyhoca-cli-0.5.0.1 (27 Nov 2014)
40
41 27 Nov 2014; Bernard Cafarelli <voyageur@g.o>
42 +pyhoca-cli-0.5.0.1.ebuild, +metadata.xml:
43 Initial commit
44
45
46
47
48 1.1 net-misc/pyhoca-cli/pyhoca-cli-0.5.0.1.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/pyhoca-cli/pyhoca-cli-0.5.0.1.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/pyhoca-cli/pyhoca-cli-0.5.0.1.ebuild?rev=1.1&content-type=text/plain
52
53 Index: pyhoca-cli-0.5.0.1.ebuild
54 ===================================================================
55 # Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/net-misc/pyhoca-cli/pyhoca-cli-0.5.0.1.ebuild,v 1.1 2014/11/27 14:16:53 voyageur Exp $
58
59 EAPI=5
60
61 PYTHON_COMPAT=( python2_7 )
62 inherit distutils-r1
63
64 DESCRIPTION="X2Go command line client"
65 HOMEPAGE="http://www.x2go.org"
66 SRC_URI="http://code.x2go.org/releases/source/${PN}/${P}.tar.gz"
67
68 LICENSE="AGPL-3"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 IUSE=""
72
73 DEPEND="dev-python/setproctitle[${PYTHON_USEDEP}]
74 net-misc/python-x2go[${PYTHON_USEDEP}]"
75 RDEPEND="${DEPEND}"
76
77 python_install() {
78 distutils-r1_python_install
79 python_doexe pyhoca-cli
80 }
81
82 python_install_all() {
83 distutils-r1_python_install_all
84 doman man/man1/*
85 }