summaryrefslogtreecommitdiff
path: root/dev-python/enzyme/enzyme-0.5.0.ebuild
blob: 946f9ab08310fdfb8f48663bf6dc082318d97878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
PYTHON_REQ_USE='xml(+)'

inherit distutils-r1 pypi

DESCRIPTION="Python video metadata parser"
HOMEPAGE="
	https://github.com/Diaoul/enzyme/
	https://pypi.org/project/enzyme/
"
SRC_URI+="
	test? (
		https://downloads.sourceforge.net/matroska/test_files/matroska_test_w1_1.zip
		https://github.com/Diaoul/enzyme/raw/0.5.0/tests/parsers/ebml/test1.mkv.yml
	)
"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"

BDEPEND="
	test? (
		app-arch/unzip
		dev-python/pyyaml[${PYTHON_USEDEP}]
		dev-python/requests[${PYTHON_USEDEP}]
	)
"

distutils_enable_tests pytest

src_unpack() {
	unpack "${P}.tar.gz"

	if use test; then
		mkdir -p "${P}"/tests/{data,parsers/ebml} || die
		if [[ -f ${P}/tests/parsers/ebml/test1.mkv.yml ]]; then
			die "Missing test data added, update"
		fi
		cp "${DISTDIR}"/test1.mkv.yml "${P}"/tests/parsers/ebml/ || die
		cd "${P}"/tests/data || die
		unpack matroska_test_w1_1.zip
	fi
}