Gentoo Archives: gentoo-commits

From: Alice Ferrazzi <alicef@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/elivepatch-server/
Date: Thu, 04 Jul 2019 19:07:24
Message-Id: 1562267217.af3eb37e207a0b63bc7050612622d9f683506a8b.alicef@gentoo
1 commit: af3eb37e207a0b63bc7050612622d9f683506a8b
2 Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 4 18:48:59 2019 +0000
4 Commit: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 4 19:06:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af3eb37e
7
8 sys-apps/elivepatch-server: bump to 0.2
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.11
11 Signed-off-by: Alice Ferrazzi <alicef <AT> gentoo.org>
12
13 sys-apps/elivepatch-server/Manifest | 1 +
14 .../elivepatch-server/elivepatch-server-0.2.ebuild | 29 ++++++++++++++++++++++
15 2 files changed, 30 insertions(+)
16
17 diff --git a/sys-apps/elivepatch-server/Manifest b/sys-apps/elivepatch-server/Manifest
18 index 7f020d448e2..5ac76676c92 100644
19 --- a/sys-apps/elivepatch-server/Manifest
20 +++ b/sys-apps/elivepatch-server/Manifest
21 @@ -1 +1,2 @@
22 DIST elivepatch-server-0.1.tar.gz 11564 BLAKE2B 0b1a9c518ba51ffa4fcdf0d5d0202b182464d13123334583e8f647be4c8ff48c9d7471fcab8a18d2ddd27172928942e4645c75a1976b25a521c7f1caecedb0b6 SHA512 d469fbc32df7a586fa899c6e587832bd53c1984c97b973e3aad4f6bf62962846142938a6e6e5729fce39d3f7d486c5ed9fd9f484425d863a40a1199f170830fb
23 +DIST elivepatch-server-0.2.tar.gz 14198 BLAKE2B 1e48626dff5cf0ed5e7e3fb09dec54fc0e203be58646a62419df901c8b96964281250c613ef06cca9ede32ce7f4e384094892a79033afa0d20b133c54a4cc5c6 SHA512 1af4c6656b32491d82c0c98ed53a7184bea4a2639d6bf6072c3e8ae3f0d12c09284cdb6f96129b1ce848872946e14c6b83d3bbe6eb959cd5c918575ed42a621a
24
25 diff --git a/sys-apps/elivepatch-server/elivepatch-server-0.2.ebuild b/sys-apps/elivepatch-server/elivepatch-server-0.2.ebuild
26 new file mode 100644
27 index 00000000000..5707a104f42
28 --- /dev/null
29 +++ b/sys-apps/elivepatch-server/elivepatch-server-0.2.ebuild
30 @@ -0,0 +1,29 @@
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=( python{2_7,3_5,3_6} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Live patch building server with RESTFul Api for elivepatch-client"
41 +HOMEPAGE="https://wiki.gentoo.org/wiki/Elivepatch"
42 +SRC_URI="https://github.com/aliceinwire/elivepatch-server/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +RDEPEND="
49 + dev-python/werkzeug[${PYTHON_USEDEP}]
50 + dev-python/flask[${PYTHON_USEDEP}]
51 + dev-python/flask-restful[${PYTHON_USEDEP}]"
52 +DEPEND="${RDEPEND}
53 + dev-python/setuptools[${PYTHON_USEDEP}]"
54 +
55 +python_install_all() {
56 + newinitd init/elivepatch.init ${PN}
57 + newconfd init/elivepatch.confd ${PN}
58 + distutils-r1_python_install_all
59 +}