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 366EA1396D9 for ; Tue, 24 Oct 2017 00:14:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78B6E2BC019; Tue, 24 Oct 2017 00:14:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 55E942BC019 for ; Tue, 24 Oct 2017 00:14:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 351E933BE19 for ; Tue, 24 Oct 2017 00:14:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF6E382C for ; Tue, 24 Oct 2017 00:14:17 +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: <1508803809.abec7c3e3c1183f54e8b84947f346e4f4331f75a.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/elivepatch-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/elivepatch-client/elivepatch-client-9999.ebuild X-VCS-Directories: sys-apps/elivepatch-client/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: abec7c3e3c1183f54e8b84947f346e4f4331f75a X-VCS-Branch: master Date: Tue, 24 Oct 2017 00:14:17 +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: 85b9a4b1-3edd-4b48-95aa-00a867a4fb3c X-Archives-Hash: ae807a66d30a19e205205ba69a70f861 commit: abec7c3e3c1183f54e8b84947f346e4f4331f75a Author: Alice Ferrazzi gentoo org> AuthorDate: Thu Sep 7 10:05:26 2017 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Tue Oct 24 00:10:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abec7c3e sys-apps/elivepatch-client: add live ebuild Package-Manager: Portage-2.3.6, Repoman-2.3.1 .../elivepatch-client-9999.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/sys-apps/elivepatch-client/elivepatch-client-9999.ebuild b/sys-apps/elivepatch-client/elivepatch-client-9999.ebuild new file mode 100644 index 00000000000..efd08c9166a --- /dev/null +++ b/sys-apps/elivepatch-client/elivepatch-client-9999.ebuild @@ -0,0 +1,28 @@ +# 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 installer client working with elivepatch-server" +HOMEPAGE="https://wiki.gentoo.org/wiki/Elivepatch" +if [[ ${PV} == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/aliceinwire/elivepatch-client.git" +else + SRC_URI="https://github.com/aliceinwire/elivepatch-client/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-2+" +SLOT="0" + +RDEPEND=" + app-admin/sudo + dev-python/git-python[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]"