gentoo/dev-python/enzyme/enzyme-9999.ebuild
Ilya Tumaykin 55f3f69ecd
dev-python/enzyme: add python-3.5 support
Tested by me against dev-lang/python-3.5.2:3.5/3.5m

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/1964

Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
2016-07-30 08:52:18 +02:00

49 lines
1.0 KiB
Bash

# 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,3_4,3_5} )
PYTHON_REQ_USE='xml(+)'
inherit distutils-r1 git-r3
DESCRIPTION="Python video metadata parser"
HOMEPAGE="https://github.com/Diaoul/enzyme https://pypi.python.org/pypi/enzyme"
EGIT_REPO_URI="git://github.com/Diaoul/${PN}.git"
SRC_URI="test? ( mirror://sourceforge/matroska/test_files/matroska_test_w1_1.zip )"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS=""
IUSE="test"
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
test? (
app-arch/unzip
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
)
"
src_unpack() {
default_src_unpack
git-r3_src_unpack
}
python_prepare_all() {
if use test; then
mkdir enzyme/tests/test_{parsers,mkv} || die
ln -s "${WORKDIR}"/test* enzyme/tests/test_parsers/ || die
ln -s "${WORKDIR}"/test* enzyme/tests/test_mkv/ || die
fi
distutils-r1_python_prepare_all
}
python_test() {
esetup.py test
}