mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
PYTHON_REQ_USE='threads(+)'
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Program converting Python programs into stand-alone executables"
|
|
HOMEPAGE="https://www.pyinstaller.org"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/pyinstaller/pyinstaller"
|
|
EGIT_BRANCH="develop"
|
|
else
|
|
# MY_PN="PyInstaller"
|
|
# MY_P="${MY_PN}-${PV}"
|
|
# SRC_URI="https://github.com/pyinstaller/pyinstaller/releases/download/v${PV}/${MY_P}.tar.gz"
|
|
KEYWORDS="amd64 ~arm64 x86"
|
|
|
|
# S="${WORKDIR}/${MY_P}"
|
|
fi
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
IUSE="clang debug doc leak-detector"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
RESTRICT="test"
|
|
|
|
QA_PREBUILT="usr/lib/python*/site-packages/PyInstaller/bootloader/Linux-*"
|
|
|
|
RDEPEND="${PYTHON_DEPS}
|
|
sys-libs/zlib
|
|
dev-python/altgraph[${PYTHON_USEDEP}]
|
|
>=dev-python/pefile-2022.5.30[${PYTHON_USEDEP}]
|
|
>=dev-python/macholib-1.8[${PYTHON_USEDEP}]
|
|
>=dev-python/pyinstaller-hooks-contrib-2021.4[${PYTHON_USEDEP}]
|
|
>=dev-python/packaging-22.0[${PYTHON_USEDEP}]
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
leak-detector? ( dev-libs/boehm-gc )
|
|
clang? ( llvm-core/clang )
|
|
!clang? ( sys-devel/gcc )"
|
|
|
|
src_install() {
|
|
distutils-r1_src_install
|
|
insinto /etc/revdep-rebuild
|
|
doins "${FILESDIR}"/50${PN}
|
|
}
|