diff options
author | Justin Lecher <jlec@gentoo.org> | 2016-02-09 08:47:30 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2016-02-09 08:47:44 +0100 |
commit | 77e90c549e8397adb6ab53915cc3d4958699e4a7 (patch) | |
tree | aaa13c09cd41eb4aab105277333c06200a472a35 /net-misc/whatportis | |
parent | media-video/vlc: Removed old. (diff) | |
download | gentoo-77e90c549e8397adb6ab53915cc3d4958699e4a7.tar.gz gentoo-77e90c549e8397adb6ab53915cc3d4958699e4a7.tar.bz2 gentoo-77e90c549e8397adb6ab53915cc3d4958699e4a7.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.6.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/net-misc/whatportis/Manifest b/net-misc/whatportis/Manifest index f1c780be313f..0c55dcdc84a6 100644 --- a/net-misc/whatportis/Manifest +++ b/net-misc/whatportis/Manifest @@ -2,3 +2,4 @@ DIST whatportis-0.2.tar.gz 256884 SHA256 08735b4e1898cf64880ee2c08a5da74b3b81d65 DIST whatportis-0.3.tar.gz 258221 SHA256 661920d3038127502c438189e0d4f068290de28360206bf4c20a66b0b6bd878b SHA512 cff214d07c3f84b8eb040809930fffaf0c590ea2a922d9a6d58b71442afd0201360d292bbc05c2fe6756cfa72c9eb1fa96dcd5e4777067a2a7d5de1ae351f910 WHIRLPOOL 4504a91dbeebaebb219ded2705f573ee67f7ffc72e333281106e68bc1c1732eac0c86cb0e9b20e55f248373d089b3ce38352cfaaf8aefdf3a58af87e3771fb5b DIST whatportis-0.4.tar.gz 258876 SHA256 b03793a9871125f8bc72996941fe40a6efaa78c5c640e3d68d599d24599c9eb9 SHA512 c786d25fc25da1cd21b6f9251584a2968618c9e700c7b2dbad2fcfadfe89ea1600c0d27c9d1e3435a3cbb7338db492a5d820364006400c9a99986904793a5a12 WHIRLPOOL 42c04da9eb5235c8ba085982439632b8645fa2ac5065e05786c126afee024a6f49aa664cb0251c4d91eca65ab8946361c4a634ee824469b8d5368b2ae996221a DIST whatportis-0.5.tar.gz 218371 SHA256 39f2f66d6b6a408869272f4461933ca97833f1691e390844cc43a25fcef73d20 SHA512 b8fe5da0160df5f6fc5b19c560e07e33c59c155c831a8e0a36254e5de111014d2e607869be45523c8c80c4dba0345ded344a509a11ce70cc0e027c58be7262d1 WHIRLPOOL aeb800e467a0bfe0f0dd92920e2c322d3a2ecf157d777a5a82b09657ea22a99ae3523c080d34a9385fe700397ce39a22d559224b2678b8511a270abca6da7843 +DIST whatportis-0.6.tar.gz 218447 SHA256 d037a5b36629b0775527dea71a95feb99a5e619cca7626abe52edf6590c13602 SHA512 f9a46974618b0c70164de29aa9c57c7d0cb3c0a09626ec3d7d514fe0b88ce50b2acca1f9e949449508a2b170311e470fe9c7f3ed66f0af4ef01fd63dd815b8a2 WHIRLPOOL d02cfa19af5e7cd759bab614b6b10facc17c6f71e2588369ae2864da6706a2c2b2b1c2695eab312023533aa9751e82f5e9f82e99aea1cacde0df29e7339a98af diff --git a/net-misc/whatportis/whatportis-0.6.ebuild b/net-misc/whatportis/whatportis-0.6.ebuild new file mode 100644 index 000000000000..152867fb50bb --- /dev/null +++ b/net-misc/whatportis/whatportis-0.6.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{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}] + >=dev-python/tinydb-3.1.2[${PYTHON_USEDEP}] + >=dev-python/simplejson-3.8.1[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${EPYTHON}" test_${PN}.py || die +} + +pkg_postinst() { + optfeature "Run ${PN} as a Server" dev-python/flask +} |