Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cx_Freeze/
Date: Wed, 08 Dec 2021 05:37:55
Message-Id: 1638941856.2996edd2b5635f3ecf8ef618a22709140c1557f7.mgorny@gentoo
1 commit: 2996edd2b5635f3ecf8ef618a22709140c1557f7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 8 04:52:52 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 8 05:37:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2996edd2
7
8 dev-python/cx_Freeze: Bump to 6.9
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cx_Freeze/Manifest | 1 +
13 dev-python/cx_Freeze/cx_Freeze-6.9.ebuild | 46 +++++++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/dev-python/cx_Freeze/Manifest b/dev-python/cx_Freeze/Manifest
17 index a9a144fd0aa2..9b6328fb2b77 100644
18 --- a/dev-python/cx_Freeze/Manifest
19 +++ b/dev-python/cx_Freeze/Manifest
20 @@ -1 +1,2 @@
21 DIST cx_Freeze-6.8.2.gh.tar.gz 1271879 BLAKE2B 5c0feb7fdb51edd9e1c3a508d3d2401d1930986ee8caf957ad84a853baed56b0a6d9bd09628331adac67b4b8c79059c5a6669f8a52f22596cd1d42c87ae8d7f4 SHA512 7c7de3290597ab986326ee67b9cb8fc3dd554cef2940e3df11df5be23a6a5b4eebb33784149aff59ebec97663c8a2e70b0811cb7c244cabe43659c59882ecd40
22 +DIST cx_Freeze-6.9.gh.tar.gz 1273371 BLAKE2B d005fdf0e2ac49cb4f347256d3b643124694a0628e4abf6806c122c144bb973e14a2d9101b2d446394d50c6c0d9af7edca1e62b50bb4d76f63c96fabfda6cc7c SHA512 219f052cae05a757c2cd57c45e47c0b3e85662ace895a8b768e1571044e132b7db367af2a6293d175e022f79f87b02007dfdd8807eb39be04a89602b51cc0246
23
24 diff --git a/dev-python/cx_Freeze/cx_Freeze-6.9.ebuild b/dev-python/cx_Freeze/cx_Freeze-6.9.ebuild
25 new file mode 100644
26 index 000000000000..7dea19185598
27 --- /dev/null
28 +++ b/dev-python/cx_Freeze/cx_Freeze-6.9.ebuild
29 @@ -0,0 +1,46 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Create standalone executables from Python scripts"
39 +HOMEPAGE="https://cx-freeze.readthedocs.io/"
40 +SRC_URI="
41 + https://github.com/marcelotduarte/cx_Freeze/archive/${PV}.tar.gz
42 + -> ${P}.gh.tar.gz
43 +"
44 +
45 +LICENSE="PYTHON"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +
49 +RDEPEND="
50 + dev-python/importlib_metadata[${PYTHON_USEDEP}]
51 + dev-util/patchelf
52 + virtual/libcrypt:=
53 + $(python_gen_cond_dep '
54 + dev-python/backports-zoneinfo[${PYTHON_USEDEP}]
55 + ' python3_8)
56 +"
57 +BDEPEND="
58 + test? (
59 + dev-python/bcrypt[${PYTHON_USEDEP}]
60 + dev-python/cryptography[${PYTHON_USEDEP}]
61 + dev-python/openpyxl[${PYTHON_USEDEP}]
62 + dev-python/pandas[${PYTHON_USEDEP}]
63 + dev-python/pillow[${PYTHON_USEDEP}]
64 + dev-python/pydantic[${PYTHON_USEDEP}]
65 + dev-python/pytest-mock[${PYTHON_USEDEP}]
66 + dev-python/pytest-timeout[${PYTHON_USEDEP}]
67 + )
68 +"
69 +
70 +PATCHES=(
71 + # bug #491602
72 + "${FILESDIR}/${PN}-6.8.2-buildsystem.patch"
73 +)
74 +
75 +distutils_enable_tests --install pytest