19 lines
637 B
Bash
19 lines
637 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DISTUTILS_USE_SETUPTOOLS=rdepend
|
|
|
|
PYTHON_COMPAT=( python3_{9..11} )
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Bundles a Python application and all its dependencies into a single package."
|
|
HOMEPAGE="https://pypi.org/project/pyinstaller/"
|
|
SRC_URI="https://files.pythonhosted.org/packages/63/20/cfb61921d7db3e8473440091ac99ae900357f26197502ab7ec9ff6473ca5/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+-with-Pyinstaller-Bootloader-exception"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
QA_PRESTRIPPED="usr/lib/python.*/site-packages/PyInstaller/bootloader/Linux-.*/run.*"
|