mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-07 08:52:54 +01:00
28 lines
704 B
Bash
28 lines
704 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=poetry
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="A Python library/CLI tool for parsing Apple's Image4 format"
|
|
HOMEPAGE="https://github.com/m1stadev/PyIMG4"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-python/asn1-2.7.0[${PYTHON_USEDEP}]
|
|
>=dev-python/click-8.1.7[${PYTHON_USEDEP}]
|
|
>=dev-python/pycryptodome-3.18.0[${PYTHON_USEDEP}]
|
|
dev-python/pyliblzfse[${PYTHON_USEDEP}]
|
|
dev-python/pylzss[${PYTHON_USEDEP}]
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
#distutils_enable_tests pytest
|