Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-functools/
Date: Thu, 03 Nov 2022 19:30:12
Message-Id: 1667503788.eb34897b8b757f660f2055c557680a2a84638530.arthurzam@gentoo
1 commit: eb34897b8b757f660f2055c557680a2a84638530
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 3 19:27:19 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 3 19:29:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb34897b
7
8 dev-python/jaraco-functools: drop 3.5.1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/jaraco-functools/Manifest | 1 -
13 .../jaraco-functools/jaraco-functools-3.5.1.ebuild | 57 ----------------------
14 2 files changed, 58 deletions(-)
15
16 diff --git a/dev-python/jaraco-functools/Manifest b/dev-python/jaraco-functools/Manifest
17 index b1c9b32d7e8d..2956ec32876b 100644
18 --- a/dev-python/jaraco-functools/Manifest
19 +++ b/dev-python/jaraco-functools/Manifest
20 @@ -1,2 +1 @@
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.1.ebuild b/dev-python/jaraco-functools/jaraco-functools-3.5.1.ebuild
25 deleted file mode 100644
26 index acc8167daef6..000000000000
27 --- a/dev-python/jaraco-functools/jaraco-functools-3.5.1.ebuild
28 +++ /dev/null
29 @@ -1,57 +0,0 @@
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 -}