mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
34 lines
874 B
Bash
34 lines
874 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
# https://projects.gentoo.org/python/guide/distutils.html#pep-517-build-systems
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="YAML-based definition language to specify format and data types"
|
|
HOMEPAGE="https://github.com/libyal/dtfabric"
|
|
HASH_COMMIT=${PV}
|
|
SRC_URI="https://github.com/libyal/dtfabric/archive/refs/tags/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 x86"
|
|
IUSE="test"
|
|
|
|
RDEPEND="
|
|
>=dev-python/pip-7.0.0[${PYTHON_USEDEP}]
|
|
>=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
|
|
test? (
|
|
>=dev-python/mock-2.0.0
|
|
>=dev-python/pbr-4.2.0
|
|
>=dev-python/six-1.1.0
|
|
)
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
distutils_enable_tests setup.py
|