From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A329B1396D0 for ; Tue, 5 Sep 2017 18:46:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 014CB1FC016; Tue, 5 Sep 2017 18:46:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF7651FC016 for ; Tue, 5 Sep 2017 18:46:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 99C5E33D3CE for ; Tue, 5 Sep 2017 18:46:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 107438D3D for ; Tue, 5 Sep 2017 18:46:20 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1504637106.d0104fa6641d1202f9a3e67517ade98f608f27f5.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/elivepatch-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/elivepatch-server/Manifest sys-apps/elivepatch-server/elivepatch-server-0.1.ebuild sys-apps/elivepatch-server/metadata.xml X-VCS-Directories: sys-apps/elivepatch-server/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: d0104fa6641d1202f9a3e67517ade98f608f27f5 X-VCS-Branch: master Date: Tue, 5 Sep 2017 18:46:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 649f7a9f-2359-4b5f-a7e0-30ee4e325d79 X-Archives-Hash: af98f29574128b7bee33694ebc9e5ff8 commit: d0104fa6641d1202f9a3e67517ade98f608f27f5 Author: Alice Ferrazzi gentoo org> AuthorDate: Mon Sep 4 03:45:09 2017 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Tue Sep 5 18:45:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0104fa6 sys-apps/elivepatch-server: init version Package-Manager: Portage-2.3.6, Repoman-2.3.1 sys-apps/elivepatch-server/Manifest | 1 + .../elivepatch-server/elivepatch-server-0.1.ebuild | 29 ++++++++++++++++++++++ sys-apps/elivepatch-server/metadata.xml | 10 ++++++++ 3 files changed, 40 insertions(+) diff --git a/sys-apps/elivepatch-server/Manifest b/sys-apps/elivepatch-server/Manifest new file mode 100644 index 00000000000..adad4cdaf7c --- /dev/null +++ b/sys-apps/elivepatch-server/Manifest @@ -0,0 +1 @@ +DIST elivepatch-server-0.1.tar.gz 11564 SHA256 8ce02c1284b5822fdb4c762fe45b6d3ea8d9f360bce5c59f42c96b3aa41e4908 SHA512 d469fbc32df7a586fa899c6e587832bd53c1984c97b973e3aad4f6bf62962846142938a6e6e5729fce39d3f7d486c5ed9fd9f484425d863a40a1199f170830fb WHIRLPOOL 98e7a30c8cfda908fa010185e5a508926e57c813a610156d163bdca116d6ef6e59ba31fe8a427a84a558d84a0d9f7ad7387db7b9536e5651a91de22d46648246 diff --git a/sys-apps/elivepatch-server/elivepatch-server-0.1.ebuild b/sys-apps/elivepatch-server/elivepatch-server-0.1.ebuild new file mode 100644 index 00000000000..84d6c4fbb2e --- /dev/null +++ b/sys-apps/elivepatch-server/elivepatch-server-0.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="Live patch building server with RESTFul Api for elivepatch-client" +HOMEPAGE="https://wiki.gentoo.org/wiki/Elivepatch" +SRC_URI="https://github.com/aliceinwire/elivepatch-server/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/werkzeug[${PYTHON_USEDEP}] + dev-python/flask[${PYTHON_USEDEP}] + dev-python/flask-restful[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_install_all() { + newinitd init/elivepatch.init ${PN} + newconfd init/elivepatch.confd ${PN} + distutils-r1_python_install_all +} diff --git a/sys-apps/elivepatch-server/metadata.xml b/sys-apps/elivepatch-server/metadata.xml new file mode 100644 index 00000000000..d7e109285f1 --- /dev/null +++ b/sys-apps/elivepatch-server/metadata.xml @@ -0,0 +1,10 @@ + + + + + alicef@gentoo.org + + + aliceinwire/elivepatch-server + +