From: Nelo-T. Wallus Date: Wed, 9 Aug 2017 19:49:16 +0000 (+0200) Subject: app-emulation/sen: Initial commit X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=8241fe5096b319e303092ec54197ee3ea01dae79;p=gentoo.git app-emulation/sen: Initial commit Package-Manager: Portage-2.3.6, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/5374 --- diff --git a/app-emulation/sen/Manifest b/app-emulation/sen/Manifest new file mode 100644 index 000000000000..f4e5307bb4c9 --- /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 000000000000..008b9f23e794 --- /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 000000000000..e9903c074f08 --- /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/* +}