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/fs/
Date: Mon, 02 May 2022 19:17:49
Message-Id: 1651518933.29302cb94e4667f87b19cff3d6f4a1b4a524742c.arthurzam@gentoo
1 commit: 29302cb94e4667f87b19cff3d6f4a1b4a524742c
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 18:57:50 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 19:15:33 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29302cb9
7
8 dev-python/fs: add 2.4.16
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/fs/Manifest | 1 +
13 dev-python/fs/fs-2.4.16.ebuild | 53 ++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/dev-python/fs/Manifest b/dev-python/fs/Manifest
17 index a69d3926aeeb..1411692e0bd5 100644
18 --- a/dev-python/fs/Manifest
19 +++ b/dev-python/fs/Manifest
20 @@ -1 +1,2 @@
21 +DIST fs-2.4.16.tar.gz 187441 BLAKE2B 5a59dd5bcaae19180a918ba0ceb99b598134d73e4c9ecad840b3cf3041613171367d878d147f045005a87636e8f2145451252d646dbffb8d0f3ae6ac254142ee SHA512 7d9a03b5a782cce048189a7ff527757e60ef6fbb99925713b0179dc9c483f63b54fb1911f39bf2230366c789c526a1b8927863ce93e13a0f71fd8734a7fdb9df
22 DIST pyfilesystem2-2.4.15.tar.gz 181799 BLAKE2B 522d118dcee6aafe754d8eb571aa88f26cbbbafd7fedabbf7f4470e098dde01db42cb26b20ed28305daf8f32a22250da81c8a932d420ef4bdf825deb363a26a1 SHA512 7bb153dad5ea03eec7cb1af8d1b5a851845984e194f288687b0e737e1f32c74bf4c1a8d62a9105c8637cd5a29ab82810df9fc11055b894ab0df899cb20a4e1c1
23
24 diff --git a/dev-python/fs/fs-2.4.16.ebuild b/dev-python/fs/fs-2.4.16.ebuild
25 new file mode 100644
26 index 000000000000..3ed8643399b4
27 --- /dev/null
28 +++ b/dev-python/fs/fs-2.4.16.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +inherit distutils-r1 optfeature
38 +
39 +DESCRIPTION="Filesystem abstraction layer"
40 +HOMEPAGE="
41 + https://pypi.org/project/fs/
42 + https://docs.pyfilesystem.org
43 + https://www.willmcgugan.com/tag/fs/
44 +"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
50 +
51 +RDEPEND="
52 + >=dev-python/appdirs-1.4.3[${PYTHON_USEDEP}]
53 + dev-python/pytz[${PYTHON_USEDEP}]
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 + >=dev-python/six-1.10[${PYTHON_USEDEP}]
56 +"
57 +# NB: we skip tests requiring pyftpdlib
58 +BDEPEND="
59 + test? (
60 + dev-python/parameterized[${PYTHON_USEDEP}]
61 + dev-python/psutil[${PYTHON_USEDEP}]
62 + )
63 +"
64 +
65 +distutils_enable_sphinx docs/source dev-python/sphinx_rtd_theme
66 +distutils_enable_tests pytest
67 +
68 +python_test() {
69 + local EPYTEST_IGNORE=(
70 + # TODO: fails at teardown due to unfreed resources
71 + tests/test_ftpfs.py
72 + )
73 +
74 + # pytest-xvfb causes test failures due to a zombie Xvfb process
75 + epytest -p no:xvfb
76 +}
77 +
78 +pkg_postinst() {
79 + optfeature "S3 support" dev-python/boto
80 + optfeature "SFTP support" dev-python/paramiko
81 + optfeature "Browser support" dev-python/wxpython
82 +}