Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fs/
Date: Mon, 27 Dec 2021 21:16:33
Message-Id: 1640639700.bb518c510bee7310497ec493cbc05d7abcc5827a.mgorny@gentoo
1 commit: bb518c510bee7310497ec493cbc05d7abcc5827a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 27 21:15:00 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 27 21:15:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb518c51
7
8 dev-python/fs: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/fs/Manifest | 1 -
13 dev-python/fs/fs-2.4.13.ebuild | 53 ------------------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/dev-python/fs/Manifest b/dev-python/fs/Manifest
17 index 629c29a9d9a1..4b77af288471 100644
18 --- a/dev-python/fs/Manifest
19 +++ b/dev-python/fs/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyfilesystem2-2.4.13.tar.gz 176958 BLAKE2B 154761ddc4db087abdb294ec82ac5b18c46e05f04e783559f3b4d65cde21b9444100130c29d1051a3d2b177f5c9ef7299806fcce1ab3a4b0770b4f1c156abd71 SHA512 c07bf6a8d373a11019709ada392153dbf953399631fa388433f9b7b73d9ae1072ea70b8ed9896752161a4737a399520f030b7875dc23137f418268c5acc24f48
22 DIST pyfilesystem2-2.4.14.tar.gz 181196 BLAKE2B 23442e551684fab1493762182944769789ac45e363556705a911b2b3df456da7edfebb58a0d49317f9e9d46316494577be0ec449c86365a510d493d57e1636b0 SHA512 7bc69e23e6477a68fdf87d18403ba0bff2ff4eb2d0cf3cd9c7b0078885ed9d718e3f4f5f22bd77c6bcca6ebfa990045104a2d5abcf473a9d77a28aa94884650b
23
24 diff --git a/dev-python/fs/fs-2.4.13.ebuild b/dev-python/fs/fs-2.4.13.ebuild
25 deleted file mode 100644
26 index 74bdc1599f65..000000000000
27 --- a/dev-python/fs/fs-2.4.13.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..10} )
36 -DISTUTILS_USE_SETUPTOOLS=rdepend
37 -
38 -inherit distutils-r1 optfeature
39 -
40 -MY_P=pyfilesystem2-${PV}
41 -DESCRIPTION="Filesystem abstraction layer"
42 -HOMEPAGE="
43 - https://pypi.org/project/fs/
44 - https://docs.pyfilesystem.org
45 - https://www.willmcgugan.com/tag/fs/
46 -"
47 -# Tests from the PyPI tarball are broken
48 -# https://github.com/PyFilesystem/pyfilesystem2/issues/364
49 -SRC_URI="
50 - https://github.com/PyFilesystem/pyfilesystem2/archive/v${PV}.tar.gz
51 - -> ${MY_P}.tar.gz"
52 -S="${WORKDIR}/${MY_P}"
53 -
54 -LICENSE="MIT"
55 -SLOT="0"
56 -KEYWORDS="~alpha amd64 arm arm64 hppa ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
57 -
58 -RDEPEND="
59 - >=dev-python/appdirs-1.4.3[${PYTHON_USEDEP}]
60 - dev-python/pytz[${PYTHON_USEDEP}]
61 - >=dev-python/six-1.10[${PYTHON_USEDEP}]
62 -"
63 -BDEPEND="
64 - test? (
65 - dev-python/pyftpdlib[${PYTHON_USEDEP}]
66 - dev-python/psutil[${PYTHON_USEDEP}]
67 - )
68 -"
69 -
70 -distutils_enable_sphinx docs/source dev-python/sphinx_rtd_theme
71 -distutils_enable_tests pytest
72 -
73 -python_test() {
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 -}