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-text/
Date: Wed, 17 Aug 2022 19:40:19
Message-Id: 1660765141.7c9fded3f9038a325b1f216f893e681439f7df7c.arthurzam@gentoo
1 commit: 7c9fded3f9038a325b1f216f893e681439f7df7c
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 17 19:39:01 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 17 19:39:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9fded3
7
8 dev-python/jaraco-text: drop 3.8.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/jaraco-text/Manifest | 1 -
13 dev-python/jaraco-text/jaraco-text-3.8.0.ebuild | 59 -------------------------
14 2 files changed, 60 deletions(-)
15
16 diff --git a/dev-python/jaraco-text/Manifest b/dev-python/jaraco-text/Manifest
17 index 485df5ca46f1..1b1229c1e0c7 100644
18 --- a/dev-python/jaraco-text/Manifest
19 +++ b/dev-python/jaraco-text/Manifest
20 @@ -1,2 +1 @@
21 -DIST jaraco.text-3.8.0.tar.gz 13078 BLAKE2B 0c081fea1bc20150347636c46b489d4c09ab0c553d44b9f68c4e2d7b3ca35574801a740d4b907f03956a6817ba0ecc07945809c1619248563bb29974b0448577 SHA512 3526f1371d8f2e7c79dff61941b1b4ead3d0f4b5144f0e22dbd098ec244b9ffddba4bbeaa0d817a80ff422fa5c7ae11d0959d3f56044d7c5f95d8c8a5de8ad2f
22 DIST jaraco.text-3.8.1.tar.gz 14160 BLAKE2B 3f8af8881665a8eb9876ae3c76ccaa68f3c58f402e1761956235bda2089e6c5e72f7968ce7fd9dd7b8dc31a08228a715c8c715dc5a93e4453af1b94c2253bce6 SHA512 2dfdd2b3bfef7c0a38a633b810a63a4337ce79b0c871f08beb369bea04585ef1b9e53afa7cef0b54c172ca25eed068af92215526d2f5cee232ccf7e72c914cfa
23
24 diff --git a/dev-python/jaraco-text/jaraco-text-3.8.0.ebuild b/dev-python/jaraco-text/jaraco-text-3.8.0.ebuild
25 deleted file mode 100644
26 index 1865b43a22d0..000000000000
27 --- a/dev-python/jaraco-text/jaraco-text-3.8.0.ebuild
28 +++ /dev/null
29 @@ -1,59 +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=( python3_{8..11} pypy3 )
38 -
39 -inherit distutils-r1
40 -
41 -MY_P=${P/-/.}
42 -DESCRIPTION="Text utilities used by other projects by developer jaraco"
43 -HOMEPAGE="
44 - https://github.com/jaraco/jaraco.text/
45 - https://pypi.org/project/jaraco.text/
46 -"
47 -SRC_URI="mirror://pypi/${PN:0: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/jaraco-context-4.1.1-r1[${PYTHON_USEDEP}]
56 - >=dev-python/jaraco-functools-3.5.0-r1[${PYTHON_USEDEP}]
57 - $(python_gen_cond_dep '
58 - >=dev-python/importlib_resources-5.4.0-r3[${PYTHON_USEDEP}]
59 - ' 3.8)
60 -"
61 -
62 -distutils_enable_sphinx docs \
63 - ">=dev-python/jaraco-packaging-3.2" \
64 - ">=dev-python/rst-linker-1.9"
65 -distutils_enable_tests pytest
66 -
67 -src_configure() {
68 - grep -q 'build-backend = "setuptools' pyproject.toml ||
69 - die "Upstream changed build-backend, recheck"
70 - # write a custom pyproject.toml to ease setuptools bootstrap
71 - cat > pyproject.toml <<-EOF || die
72 - [build-system]
73 - requires = ["flit_core >=3.2,<4"]
74 - build-backend = "flit_core.buildapi"
75 -
76 - [project]
77 - name = "jaraco.text"
78 - version = "${PV}"
79 - description = "Module for text manipulation"
80 - EOF
81 -}
82 -
83 -python_install() {
84 - distutils-r1_python_install
85 - # rename to workaround a bug in pkg_resources
86 - # https://bugs.gentoo.org/834522
87 - mv "${D}$(python_get_sitedir)"/jaraco{_,.}text-${PV}.dist-info || die
88 -}