commit:     7e84cafed43fd39060a74b1dee17545f65c13177
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 21 11:55:10 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Nov 21 13:24:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e84cafe

dev-python/jaraco-text: Bump to 3.11.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/jaraco-text/Manifest                  |  1 +
 dev-python/jaraco-text/jaraco-text-3.11.0.ebuild | 71 ++++++++++++++++++++++++
 2 files changed, 72 insertions(+)

diff --git a/dev-python/jaraco-text/Manifest b/dev-python/jaraco-text/Manifest
index b5ab2f5d58c3..7651bf1654c2 100644
--- a/dev-python/jaraco-text/Manifest
+++ b/dev-python/jaraco-text/Manifest
@@ -1,2 +1,3 @@
 DIST jaraco.text-3.10.0.tar.gz 15588 BLAKE2B 
af615a481c21cfb3d0aa7824ad4a657dc2b629912f9772d25a9930891c222bea1205f1badcfd77502cfe84953873be55006eb6a1e475417296df821aadd94b63
 SHA512 
1c83dc9247e8c55ed20d8768abcb66c3fb4cdfb9ade3744f3d3c3e705b94e376c7b44fdfe242189001d69fbf28fdb5601ff33b1874495b3c2ad9bdd781265f43
+DIST jaraco.text-3.11.0.tar.gz 15883 BLAKE2B 
f0f3fe33901a68741cb26270384750f070476ef921bf2822f81dddfc1c66e41016757579e310bd20fc8a7f02b188de96f07bf58db41cca51252e46ebbbddcff9
 SHA512 
ad3ac412df5e21cef86dc56cdc869a93a660a103a676c1d187e5ea762690b89d61c8f68994e6a891e3d98071b440a052fad60a37f71066e4e11a2cfaf45ae009
 DIST jaraco.text-3.9.1.tar.gz 14859 BLAKE2B 
39fad64b85c8c1ea7b5bdac963b972b93ddb632940fe873fd0a646ca02d1e3a177742db9099cbbcd07dace1450c23a2e994c36f304a819e98e1c78907af975bd
 SHA512 
f850125c7612342772d5a4a68076ea53a8cad6015c8bbe7e2923b034f8f601c8ff974eec0069b1bacba115d0aa43a948aea3b79f61d773464c823aac1880bbf1

diff --git a/dev-python/jaraco-text/jaraco-text-3.11.0.ebuild 
b/dev-python/jaraco-text/jaraco-text-3.11.0.ebuild
new file mode 100644
index 000000000000..8c1cfbc650dd
--- /dev/null
+++ b/dev-python/jaraco-text/jaraco-text-3.11.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
+EAPI=7
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+MY_P=${P/-/.}
+DESCRIPTION="Text utilities used by other projects by developer jaraco"
+HOMEPAGE="
+       https://github.com/jaraco/jaraco.text/
+       https://pypi.org/project/jaraco.text/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/.}/${MY_P}.tar.gz"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+       >=dev-python/jaraco-context-4.1.1-r1[${PYTHON_USEDEP}]
+       >=dev-python/jaraco-functools-3.5.0-r1[${PYTHON_USEDEP}]
+       $(python_gen_cond_dep '
+               >=dev-python/importlib_resources-5.4.0-r3[${PYTHON_USEDEP}]
+       ' 3.8)
+"
+# needed only for CLI tool, make it PDEPEND to reduce pain in setuptools
+# bootstrap
+PDEPEND="
+       dev-python/autocommand[${PYTHON_USEDEP}]
+       dev-python/inflect[${PYTHON_USEDEP}]
+       dev-python/more-itertools[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       test? (
+               ${PDEPEND}
+               $(python_gen_cond_dep '
+                       dev-python/pathlib2[${PYTHON_USEDEP}]
+               ' 3.8 3.9)
+       )
+"
+
+distutils_enable_tests pytest
+
+src_configure() {
+       grep -q 'build-backend = "setuptools' pyproject.toml ||
+               die "Upstream changed build-backend, recheck"
+       # write a custom pyproject.toml to ease setuptools bootstrap
+       cat > pyproject.toml <<-EOF || die
+               [build-system]
+               requires = ["flit_core >=3.2,<4"]
+               build-backend = "flit_core.buildapi"
+
+               [project]
+               name = "jaraco.text"
+               version = "${PV}"
+               description = "Module for text manipulation"
+       EOF
+}
+
+python_install() {
+       distutils-r1_python_install
+       # rename to workaround a bug in pkg_resources
+       # https://bugs.gentoo.org/834522
+       mv "${D}$(python_get_sitedir)"/jaraco{_,.}text-${PV}.dist-info || die
+}

Reply via email to