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 9CCBB1396D0 for ; Fri, 11 Aug 2017 08:55:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD79C1FC00F; Fri, 11 Aug 2017 08:55:46 +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 AABFA1FC00F for ; Fri, 11 Aug 2017 08:55:46 +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 CDABE341A74 for ; Fri, 11 Aug 2017 08:55:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78F6C75F6 for ; Fri, 11 Aug 2017 08:55:43 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1502441604.8241fe5096b319e303092ec54197ee3ea01dae79.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/sen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/sen/Manifest app-emulation/sen/metadata.xml app-emulation/sen/sen-0.5.1.ebuild X-VCS-Directories: app-emulation/sen/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 8241fe5096b319e303092ec54197ee3ea01dae79 X-VCS-Branch: master Date: Fri, 11 Aug 2017 08:55:43 +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: fd386435-758a-4bb4-a68a-bd004d39b39c X-Archives-Hash: 83c7bb6ffcb8d00c75f68f060c399d00 commit: 8241fe5096b319e303092ec54197ee3ea01dae79 Author: Nelo-T. Wallus wallus de> AuthorDate: Wed Aug 9 19:49:16 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Aug 11 08:53:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8241fe50 app-emulation/sen: Initial commit Package-Manager: Portage-2.3.6, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/5374 app-emulation/sen/Manifest | 1 + app-emulation/sen/metadata.xml | 18 ++++++++++++++++++ app-emulation/sen/sen-0.5.1.ebuild | 27 +++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) diff --git a/app-emulation/sen/Manifest b/app-emulation/sen/Manifest new file mode 100644 index 00000000000..f4e5307bb4c --- /dev/null +++ b/app-emulation/sen/Manifest @@ -0,0 +1 @@ +DIST sen-0.5.1.tar.gz 1907874 SHA256 c219df8c7e1dd8150996366dfce153df82a653bcbf434d3c620f0e0f3ccdf12d SHA512 f0cb37f7a942aca6f76c121eb629d8fab54f44807726b39727344899bcb95e03d3437caaa7e746a8430798afb97d00e054c36881676ec79150f6a7b089174099 WHIRLPOOL 22f21406c0897c192bd93ff052f5e76efc58f16727ef74afc1a2afa833f149d50a05528b3c82deace4e244fd8eb72962c5caa3a3b69b7c61fb9afa4e2b96ca60 diff --git a/app-emulation/sen/metadata.xml b/app-emulation/sen/metadata.xml new file mode 100644 index 00000000000..008b9f23e79 --- /dev/null +++ b/app-emulation/sen/metadata.xml @@ -0,0 +1,18 @@ + + + + + nelo@wallus.de + Nelo-Thara Wallus + Proxied by Polynomial-C + + + polynomial-c@gentoo.org + Lars Wendler + Proxy maintainer for Nelo + + + TomasTomecek/sen + sen + + diff --git a/app-emulation/sen/sen-0.5.1.ebuild b/app-emulation/sen/sen-0.5.1.ebuild new file mode 100644 index 00000000000..e9903c074f0 --- /dev/null +++ b/app-emulation/sen/sen-0.5.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5} ) + +inherit distutils-r1 + +DESCRIPTION="Terminal User Interface for docker engine" +HOMEPAGE="https://github.com/TomasTomecek/sen" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-python/urwid[${PYTHON_USEDEP}] + dev-python/urwidtrees[${PYTHON_USEDEP}] + dev-python/docker-py[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND}" + +python_install_all() { + distutils-r1_python_install_all + dodoc docs/* +}