From 1689b49f50b1ed7c2c4c815654cf796fcf096cea Mon Sep 17 00:00:00 2001 From: Yury Martynov Date: Wed, 25 Mar 2020 11:34:35 +0300 Subject: [PATCH] dev-python/pyinstaller: bump 3.6 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Yury Martynov --- dev-python/pyinstaller/Manifest | 1 + dev-python/pyinstaller/pyinstaller-3.6.ebuild | 39 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 dev-python/pyinstaller/pyinstaller-3.6.ebuild diff --git a/dev-python/pyinstaller/Manifest b/dev-python/pyinstaller/Manifest index 928fea499..00c78639d 100644 --- a/dev-python/pyinstaller/Manifest +++ b/dev-python/pyinstaller/Manifest @@ -1 +1,2 @@ DIST PyInstaller-3.5.tar.gz 3518991 BLAKE2B 3b83661c595a60400c8253355dc9b53883ca247b56c668675e2bd6c0095617b0e04e1d2906b53684088326e9107e27d2757573395cdd98574d7e648ad949924c SHA512 bdb2a138af1f402dea8d89c7e317600896d3139742a12c6335aeff7c56e99977b8fa258c5a626dbf73d22f3e2b6064bf1d4494a021300fcadc051dde8712ed01 +DIST PyInstaller-3.6.tar.gz 3539593 BLAKE2B 77f9a9e46ea98a6063beded6870e642775e9ed0ea29f58378fd47cd3ab4f9802c39c1215d5f3252b53ed400b0fa269f1f595e40e25b2839f68c442a66fed527b SHA512 97e7ac3632b5a84a85268c68cb3f3a404ca9f2786396f31016313a15c81c9c453983fd9d0376de0e7543401d3ad8af58b839dde7cefb0dfe7cbb9f3ac360f3e0 diff --git a/dev-python/pyinstaller/pyinstaller-3.6.ebuild b/dev-python/pyinstaller/pyinstaller-3.6.ebuild new file mode 100644 index 000000000..4940ecf95 --- /dev/null +++ b/dev-python/pyinstaller/pyinstaller-3.6.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_REQ_USE='threads(+)' + +inherit distutils-r1 + +DESCRIPTION="Program converting Python programs into stand-alone executables" +HOMEPAGE="http://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 ~x86" + + S="${WORKDIR}/${MY_P}" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="clang debug doc leak-detector" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + >=dev-python/macholib-1.8[${PYTHON_USEDEP}] + dev-python/altgraph[${PYTHON_USEDEP}] + >=dev-python/pefile-2018.08.08[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + leak-detector? ( dev-libs/boehm-gc ) + clang? ( sys-devel/clang ) + !clang? ( sys-devel/gcc )"