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/jaraco-functools/
Date: Tue, 27 Sep 2022 02:04:05
Message-Id: 1664244235.f4f85388b079615aad6e900efc1cc112ef088b62.mgorny@gentoo
1 commit: f4f85388b079615aad6e900efc1cc112ef088b62
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 27 01:47:53 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 02:03:55 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4f85388
7
8 dev-python/jaraco-functools: Bump to 3.5.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jaraco-functools/Manifest | 1 +
13 .../jaraco-functools/jaraco-functools-3.5.2.ebuild | 57 ++++++++++++++++++++++
14 2 files changed, 58 insertions(+)
15
16 diff --git a/dev-python/jaraco-functools/Manifest b/dev-python/jaraco-functools/Manifest
17 index ba332691d74e..b1c9b32d7e8d 100644
18 --- a/dev-python/jaraco-functools/Manifest
19 +++ b/dev-python/jaraco-functools/Manifest
20 @@ -1 +1,2 @@
21 DIST jaraco.functools-3.5.1.tar.gz 14516 BLAKE2B d58ca0e51767278988f418a5b1b736dd56da2c0ed214fa9b9b2a8b5e4ae77fcdedd431e444d1d2c3359b52a648ec85d01b8b7a2db872bb27d9bf24484347b7a0 SHA512 4496c80eae72834e5bc214f40de91a6aa603ce296b3866e0b363014c2919843f515efe9b314f18667e6b09d183a0985760e47f3340aed42dfbdba01884896df5
22 +DIST jaraco.functools-3.5.2.tar.gz 14650 BLAKE2B 63db54c5f3dea7b0ce939ad51fc4c4f5831a620a37a47d416079d4c9ad30cb3d401567a8da036178122431cafd8dc18e4a9b59241cd1fc0b8bd1c057dfb8a034 SHA512 3f67d151f4f6553b3e560b0e6ab71cf726d6c8f36ef5e9f69b6325605547797e19a3f9eb1331cf332db498538953ccaeb75820528e6599fd7cf125abdc073e69
23
24 diff --git a/dev-python/jaraco-functools/jaraco-functools-3.5.2.ebuild b/dev-python/jaraco-functools/jaraco-functools-3.5.2.ebuild
25 new file mode 100644
26 index 000000000000..623bd91af000
27 --- /dev/null
28 +++ b/dev-python/jaraco-functools/jaraco-functools-3.5.2.ebuild
29 @@ -0,0 +1,57 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
34 +EAPI=7
35 +
36 +DISTUTILS_USE_PEP517=flit
37 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
38 +
39 +inherit distutils-r1
40 +
41 +MY_P=${P/-/.}
42 +DESCRIPTION="Additional functions used by other projects by developer jaraco"
43 +HOMEPAGE="
44 + https://github.com/jaraco/jaraco.functools/
45 + https://pypi.org/project/jaraco.functools/
46 +"
47 +SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
48 +S=${WORKDIR}/${MY_P}
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
53 +
54 +RDEPEND="
55 + >=dev-python/more-itertools-0.12.0-r1[${PYTHON_USEDEP}]
56 +"
57 +BDEPEND="
58 + test? (
59 + dev-python/jaraco-classes[${PYTHON_USEDEP}]
60 + )
61 +"
62 +
63 +distutils_enable_tests pytest
64 +
65 +src_configure() {
66 + grep -q 'build-backend = "setuptools' pyproject.toml ||
67 + die "Upstream changed build-backend, recheck"
68 + # write a custom pyproject.toml to ease setuptools bootstrap
69 + cat > pyproject.toml <<-EOF || die
70 + [build-system]
71 + requires = ["flit_core >=3.2,<4"]
72 + build-backend = "flit_core.buildapi"
73 +
74 + [project]
75 + name = "jaraco.functools"
76 + version = "${PV}"
77 + description = "Functools like those found in stdlib"
78 + EOF
79 +}
80 +
81 +python_install() {
82 + distutils-r1_python_install
83 + # rename to workaround a bug in pkg_resources
84 + # https://bugs.gentoo.org/834522
85 + mv "${D}$(python_get_sitedir)"/jaraco{_,.}functools-${PV}.dist-info || die
86 +}