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, 02 Nov 2022 07:37:37
Message-Id: 1667374631.3426b3fbeaeecd66a3ad4cbb46de058a1d6ece80.mgorny@gentoo
1 commit: 3426b3fbeaeecd66a3ad4cbb46de058a1d6ece80
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 2 06:22:10 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 2 07:37:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3426b3fb
7
8 dev-python/cx_Freeze: Bump to 6.13.1
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.13.1.ebuild | 57 ++++++++++++++++++++++++++++
14 2 files changed, 58 insertions(+)
15
16 diff --git a/dev-python/cx_Freeze/Manifest b/dev-python/cx_Freeze/Manifest
17 index 1b9d990fb32c..8d73928cb543 100644
18 --- a/dev-python/cx_Freeze/Manifest
19 +++ b/dev-python/cx_Freeze/Manifest
20 @@ -1,3 +1,4 @@
21 DIST cx_Freeze-6.11.1.gh.tar.gz 1307368 BLAKE2B 7bfbe61274b29890ba35fda133d4c18708d3a04bc33c96633f6651fb9712fec4628f92e2044284ad1bfb992a76e4772669a29ada2f12f16741378d636701e4ad SHA512 37586365a901800fcd18ab6e3b0de9e3e9980c8d8b8b61aa1eddf0d01dc50b53cb1ffc77070f5a5ad40c9b7a020b09ced51d38f53688129b2444abe020a75237
22 DIST cx_Freeze-6.12.0.gh.tar.gz 1483040 BLAKE2B 78faa77b7bd12344f601bcc5811dff43d6e9440f7cf96167b438557f93bc8d26c59c375930090389946005984245ff93232ddb6d7340ca28012ccb356d0ca630 SHA512 a3fdd94b33985b3bb0fbee2fc7438e20f3ddb31f0d71322eed1c06a15954be5845a0b1dfbc55537fe16022db95b446d3fa0b3e8418cd250e653f42a180b8c586
23 DIST cx_Freeze-6.13.0.gh.tar.gz 1486127 BLAKE2B f0f54db5ce6f0d8d70efc3321741a70d496773742505cf316646051c41154f9f11dba2fc964f6e16d01e2aa54ed2c9988ec006c3bbbf70b1e37f623aee0a061a SHA512 ed6a9607dd93bfe608036beae6f52a535c240fed222d5ae5da43037ef135cd9423e815066539f975facced221d466db5393bb207eadaec3654ed409c664c2f83
24 +DIST cx_Freeze-6.13.1.gh.tar.gz 1486207 BLAKE2B aa0151fed482714e41a859059f9672950249ad7fe50fa2accaa9d6af7ddc183a8f74d87337f274849a34a404dda0c732300343b58cd872f3bd03bf275c2f4d97 SHA512 48d569fdce5c6cb100232ce3577f0a55a40f3d1dcafa884a4d62af7f27200a21eb892504b47fb7cd106f410354b70d98a8e5245382431bc1f6d990510c77cb36
25
26 diff --git a/dev-python/cx_Freeze/cx_Freeze-6.13.1.ebuild b/dev-python/cx_Freeze/cx_Freeze-6.13.1.ebuild
27 new file mode 100644
28 index 000000000000..ee713d33b641
29 --- /dev/null
30 +++ b/dev-python/cx_Freeze/cx_Freeze-6.13.1.ebuild
31 @@ -0,0 +1,57 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Create standalone executables from Python scripts"
43 +HOMEPAGE="
44 + https://cx-freeze.readthedocs.io/
45 + https://github.com/marcelotduarte/cx_Freeze/
46 + https://pypi.org/project/cx-Freeze/
47 +"
48 +SRC_URI="
49 + https://github.com/marcelotduarte/cx_Freeze/archive/${PV}.tar.gz
50 + -> ${P}.gh.tar.gz
51 +"
52 +
53 +LICENSE="PYTHON"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~x86"
56 +
57 +RDEPEND="
58 + dev-python/importlib_metadata[${PYTHON_USEDEP}]
59 + dev-util/patchelf
60 + virtual/libcrypt:=
61 + $(python_gen_cond_dep '
62 + dev-python/backports-zoneinfo[${PYTHON_USEDEP}]
63 + ' 3.8)
64 +"
65 +BDEPEND="
66 + test? (
67 + dev-python/bcrypt[${PYTHON_USEDEP}]
68 + dev-python/cryptography[${PYTHON_USEDEP}]
69 + dev-python/openpyxl[${PYTHON_USEDEP}]
70 + dev-python/pandas[${PYTHON_USEDEP}]
71 + dev-python/pillow[${PYTHON_USEDEP}]
72 + dev-python/pydantic[${PYTHON_USEDEP}]
73 + dev-python/pytest-mock[${PYTHON_USEDEP}]
74 + dev-python/pytest-timeout[${PYTHON_USEDEP}]
75 + )
76 +"
77 +
78 +PATCHES=(
79 + # bug #491602
80 + "${FILESDIR}/${PN}-6.8.2-buildsystem.patch"
81 +)
82 +
83 +distutils_enable_tests pytest
84 +
85 +EPYTEST_DESELECT=(
86 + # new setuptools?
87 + tests/test_command_bdist_rpm.py::test_bdist_rpm
88 +)