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: sys-apps/elivepatch-client/
Date: Tue, 24 Oct 2017 00:14:21
Message-Id: 1508803809.abec7c3e3c1183f54e8b84947f346e4f4331f75a.gokturk@gentoo
1 commit: abec7c3e3c1183f54e8b84947f346e4f4331f75a
2 Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 7 10:05:26 2017 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 24 00:10:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abec7c3e
7
8 sys-apps/elivepatch-client: add live ebuild
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 .../elivepatch-client-9999.ebuild | 28 ++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/sys-apps/elivepatch-client/elivepatch-client-9999.ebuild b/sys-apps/elivepatch-client/elivepatch-client-9999.ebuild
16 new file mode 100644
17 index 00000000000..efd08c9166a
18 --- /dev/null
19 +++ b/sys-apps/elivepatch-client/elivepatch-client-9999.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="Live patch installer client working with elivepatch-server"
31 +HOMEPAGE="https://wiki.gentoo.org/wiki/Elivepatch"
32 +if [[ ${PV} == *9999 ]] ; then
33 + inherit git-r3
34 + EGIT_REPO_URI="https://github.com/aliceinwire/elivepatch-client.git"
35 +else
36 + SRC_URI="https://github.com/aliceinwire/elivepatch-client/archive/v${PV}.tar.gz -> ${P}.tar.gz"
37 + KEYWORDS="~amd64"
38 +fi
39 +
40 +LICENSE="GPL-2+"
41 +SLOT="0"
42 +
43 +RDEPEND="
44 + app-admin/sudo
45 + dev-python/git-python[${PYTHON_USEDEP}]
46 + dev-python/requests[${PYTHON_USEDEP}]"
47 +DEPEND="${RDEPEND}
48 + dev-python/setuptools[${PYTHON_USEDEP}]"