diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-01-28 09:36:26 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-01-28 11:22:26 +0100 |
commit | af4c404447a6638d24a66743baadf4eec7543907 (patch) | |
tree | 987acee8d03caf1d91e4b28e1d3996d788d6187c /net-misc/whatportis | |
parent | net-misc/whatportis: Set license (diff) | |
download | gentoo-af4c404447a6638d24a66743baadf4eec7543907.tar.gz gentoo-af4c404447a6638d24a66743baadf4eec7543907.tar.bz2 gentoo-af4c404447a6638d24a66743baadf4eec7543907.zip |
net-misc/whatportis: Version Bump
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'net-misc/whatportis')
-rw-r--r-- | net-misc/whatportis/Manifest | 1 | ||||
-rw-r--r-- | net-misc/whatportis/whatportis-0.3.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/net-misc/whatportis/Manifest b/net-misc/whatportis/Manifest index 7315bb599b8e..9a3c20f49cfc 100644 --- a/net-misc/whatportis/Manifest +++ b/net-misc/whatportis/Manifest @@ -1 +1,2 @@ DIST whatportis-0.2.tar.gz 256884 SHA256 08735b4e1898cf64880ee2c08a5da74b3b81d65c44a67b44440fbe305012c8ec SHA512 5e28b7bc19fcf939ef61af3225cac314cdc0a02ba941663310ea4881fed6f23926b5fd5198295085e19acf0f856de1351d03308ddbaa02bea1e7fed372e3c13d WHIRLPOOL c81fb346e274269c7527b061bc5b6da01f988425746fb1b1c3414b9b88ea9ded70a674cfa7757af41229a1597687361b4b59512b4c853739d3d45058b448ca14 +DIST whatportis-0.3.tar.gz 258221 SHA256 661920d3038127502c438189e0d4f068290de28360206bf4c20a66b0b6bd878b SHA512 cff214d07c3f84b8eb040809930fffaf0c590ea2a922d9a6d58b71442afd0201360d292bbc05c2fe6756cfa72c9eb1fa96dcd5e4777067a2a7d5de1ae351f910 WHIRLPOOL 4504a91dbeebaebb219ded2705f573ee67f7ffc72e333281106e68bc1c1732eac0c86cb0e9b20e55f248373d089b3ce38352cfaaf8aefdf3a58af87e3771fb5b diff --git a/net-misc/whatportis/whatportis-0.3.ebuild b/net-misc/whatportis/whatportis-0.3.ebuild new file mode 100644 index 000000000000..2b25ee8c3f3e --- /dev/null +++ b/net-misc/whatportis/whatportis-0.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) + +inherit distutils-r1 + +DESCRIPTION="A command to search port names and numbers" +HOMEPAGE="http://github.com/ncrocfer/whatportis http://pypi.python.org/pypi/whatportis" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + >=dev-python/click-6.2[${PYTHON_USEDEP}] + >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${EPYTHON}" test_${PN}.py || die +} |