mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-30 04:47:28 -07:00
30 lines
777 B
Bash
30 lines
777 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
|
|
PYTHON_COMPAT=( python{2_7,3_4} )
|
|
|
|
inherit distutils-r1 eutils
|
|
|
|
DESCRIPTION="A Python wrapper for tshark output parsing"
|
|
HOMEPAGE="https://pypi.python.org/pypi/pyshark https://github.com/KimiNewt/pyshark"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
# See pyshark.egg-info/requires.txt
|
|
RDEPEND="
|
|
dev-python/py[${PYTHON_USEDEP}]
|
|
dev-python/logbook[${PYTHON_USEDEP}]
|
|
dev-python/lxml[${PYTHON_USEDEP}]
|
|
dev-python/trollius[${PYTHON_USEDEP}]
|
|
virtual/python-futures[${PYTHON_USEDEP}]
|
|
net-analyzer/wireshark"
|
|
# Tests exlcuded in MANIFEST.in
|