forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.6, Repoman-2.3.1 Closes: gentoo#5374
- Loading branch information
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST sen-0.5.1.tar.gz 1907874 SHA256 c219df8c7e1dd8150996366dfce153df82a653bcbf434d3c620f0e0f3ccdf12d SHA512 f0cb37f7a942aca6f76c121eb629d8fab54f44807726b39727344899bcb95e03d3437caaa7e746a8430798afb97d00e054c36881676ec79150f6a7b089174099 WHIRLPOOL 22f21406c0897c192bd93ff052f5e76efc58f16727ef74afc1a2afa833f149d50a05528b3c82deace4e244fd8eb72962c5caa3a3b69b7c61fb9afa4e2b96ca60 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Nelo-Thara Wallus</name> | ||
<description>Proxied by Polynomial-C</description> | ||
</maintainer> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Lars Wendler</name> | ||
<description>Proxy maintainer for Nelo</description> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">TomasTomecek/sen</remote-id> | ||
<remote-id type="pypi">sen</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/* | ||
} |