Skip to content

Commit 42313c8

Browse files
committed
dev-python/jaraco-text: new package, add 3.11.1
Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 3d5db2f commit 42313c8

File tree

3 files changed

+58
-0
lines changed

3 files changed

+58
-0
lines changed

dev-python/jaraco-text/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST jaraco-text-3.11.1.tar.gz 16083 BLAKE2B f7268128209fbdc849a745595339f4dc9a097f3f4f8f0cdcb05ca3106ed5a45460126fbb2b7d9c3b01b63aa3f750175e8cd366034183b7d8804a1650fe493e4b SHA512 b4066589e9d4c9a2a82ae2b0825d34b22b93ee179d29c3666e9b978390121520afcb8fc5ffa6457022d2e8477f4cf2b76485d9896438ee46275326577609f201
2+
EBUILD jaraco-text-3.11.1.ebuild 974 BLAKE2B af662f92e6c4a8251158e0a86981ae673a93debbef5d310b106c57adebe2c2b98a62716271a94fd119813dfaa0a2b82ce3609798756b859651aa8d854192f596 SHA512 9d5a8bc72d2fa284abbe85fe385ded06732b176d1e6f3289a0a410ce8d4db88e8fce2b98daa4a3ad4a516f4e06d33c46f06d153d4fa7bf6703a56e4f4d3841ba
3+
MISC metadata.xml 516 BLAKE2B 0737f94d7d947f43f6b19bc68327914103bae8c26c5c932e4e2f2a20717a5364e953094251ccfef6238e5f1d9cc80532003ac0f32eeefad6b744f8bcd24cd413 SHA512 f5ea7e5a0b01a5d4d48befac8f1f0297ffcaa3a37d75224199909c46abbb9dff6a79b7f1fb3a8eff3ce8f918aadcbd02fb01668fcda05c874a69ec181a6c9c5c
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{9..11} )
7+
DISTUTILS_USE_PEP517=setuptools
8+
inherit distutils-r1
9+
10+
DESCRIPTION="Module for text manipulation"
11+
HOMEPAGE="https://github.com/jaraco/jaraco.text https://pypi.org/project/jaraco.text/"
12+
MY_PN=${PN/-/.}
13+
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
14+
S="${WORKDIR}/${MY_PN}-${PV}"
15+
16+
LICENSE="MIT"
17+
SLOT="0"
18+
KEYWORDS="amd64 arm arm64 x86"
19+
IUSE="test"
20+
RESTRICT="!test? ( test )"
21+
22+
DOCS="README.rst"
23+
24+
RDEPEND="dev-python/jaraco-functools[${PYTHON_USEDEP}]
25+
>=dev-python/jaraco-context-4.1[${PYTHON_USEDEP}]
26+
dev-python/autocommand[${PYTHON_USEDEP}]
27+
dev-python/inflect[${PYTHON_USEDEP}]
28+
dev-python/more-itertools[${PYTHON_USEDEP}]"
29+
BDEPEND="
30+
dev-python/setuptools[${PYTHON_USEDEP}]
31+
test? (
32+
dev-python/pytest[${PYTHON_USEDEP}]
33+
)"
34+
35+
python_test() {
36+
py.test -v -v || die
37+
}
38+
39+
distutils_enable_tests pytest

dev-python/jaraco-text/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">jaraco.text</remote-id>
10+
<remote-id type="github">jaraco/jaraco.text</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>Jason R. Coombs</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>

0 commit comments

Comments
 (0)