diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-03-05 06:48:08 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-03-05 06:50:39 +0100 |
commit | 5c442fd56dfaa339e80577ab10e6f17a3a123a64 (patch) | |
tree | f804f5ac41a677ac42d760b2e222a7c183b8ecb1 /dev-python/pyfakefs | |
parent | dev-python/pycparser: Bump to 2.20, remove nose dep (diff) | |
download | gentoo-5c442fd56dfaa339e80577ab10e6f17a3a123a64.tar.gz gentoo-5c442fd56dfaa339e80577ab10e6f17a3a123a64.tar.bz2 gentoo-5c442fd56dfaa339e80577ab10e6f17a3a123a64.zip |
dev-python/pyfakefs: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pyfakefs')
-rw-r--r-- | dev-python/pyfakefs/Manifest | 2 | ||||
-rw-r--r-- | dev-python/pyfakefs/files/pyfakefs-3.4.3-tests.patch | 40 | ||||
-rw-r--r-- | dev-python/pyfakefs/pyfakefs-3.4.3.ebuild | 26 | ||||
-rw-r--r-- | dev-python/pyfakefs/pyfakefs-3.5.8.ebuild | 29 |
4 files changed, 0 insertions, 97 deletions
diff --git a/dev-python/pyfakefs/Manifest b/dev-python/pyfakefs/Manifest index 8c6c0389eaf6..770422b95967 100644 --- a/dev-python/pyfakefs/Manifest +++ b/dev-python/pyfakefs/Manifest @@ -1,5 +1,3 @@ -DIST pyfakefs-3.4.3.tar.gz 156896 BLAKE2B 2450cb67dbb25d2029a113dd95c3d51e60ef66c6683a5898ea73800ce1269d628af9f8daa85195d5b473f18b7c3262f2f26fc9c17caf80ce2f5159c247ebea5b SHA512 aafcad5d801f625273239221c56e46229ff8ab622cfb474d92f8555cfff90279ad9a092c20878279454c59033ad23d53cfe877023ac5d20c5a67a610b62ba7f1 -DIST pyfakefs-3.5.8.tar.gz 171519 BLAKE2B 18eb784cf62108c3363b3b5fa137ec4ce830583d263dcecc6f007e6cdeb8a8eefcc4f9eecfba4a9b5b485508749f6dc75a47ff67bc8f5e77f2c0abae2cdd1778 SHA512 e72042dc80545d4a8602bf90bc832298184040389c8fd182df1ef33712061b4937623ca98d70e59b4a388677626f861ff096de939b5caa372849ee10fc3dd8bb DIST pyfakefs-3.7.1.tar.gz 179420 BLAKE2B 46f902527c2c69af1d7d5e296a25d5415b4fba68d4ed76d7bc138e4b2d53dbd4bf7dc6fd75a8e5277eccb9740c67d5fdf5b640fbc577f22690ee32db434c3676 SHA512 910cef89443546c9a5f600cbe06cbdc396ac82d15d852768c06c2f97e764b05ee9fe9bea7687404a9a962924bd33c45d9de2a04b448fe6350d8cc31c4e163dfc DIST pyfakefs-3.7.2.tar.gz 180195 BLAKE2B f1e76b652fc67f630fb45798974dc22455e9e99509829fbcaa479f36887c90207d7b6f087e89c9e113bb44df8c4221dc4676129663740812a9426d84a1d47401 SHA512 33bdbf7e21f1135c0ee048943a4b7dffec96e018285e4ee2e6a1c6a7f9e595e27348c83af3803d80322e7fd12a59985a6bf6342aa6211ba95c74ffa20929fb5a DIST pyfakefs-4.0.1.tar.gz 177542 BLAKE2B 05fe75da0f7525a51f01740c9c83e5cd1f9c565947439ea4c55a7c859b9952539b77a3c3754498d594aa83c77fbcf058131a0cacdba5218d6073de7775e58bf9 SHA512 cf87b8fd8e0c8948f2923e001a61790148b22898538ce190dbb6e13ba4ec5850e95a576d08c7aee94fd342becebf1e50c91bdecf6679a54300ae045b25509a73 diff --git a/dev-python/pyfakefs/files/pyfakefs-3.4.3-tests.patch b/dev-python/pyfakefs/files/pyfakefs-3.4.3-tests.patch deleted file mode 100644 index c87005b054c9..000000000000 --- a/dev-python/pyfakefs/files/pyfakefs-3.4.3-tests.patch +++ /dev/null @@ -1,40 +0,0 @@ -Drop checks that fail due to sandboxing and skip failing tell check. - ---- pyfakefs-3.4.3/pyfakefs/tests/fake_os_test.py -+++ pyfakefs-3.4.3/pyfakefs/tests/fake_os_test.py -@@ -688,7 +688,6 @@ - self.os.chdir(directory) - self.assert_raises_os_error(dir_error, self.os.remove, dir_path) - self.assertTrue(self.os.path.exists(dir_path)) -- self.assert_raises_os_error(errno.ENOENT, self.os.remove, '/plugh') - - def test_remove_dir_linux(self): - self.check_linux_only() -@@ -1202,6 +1201,8 @@ - self.assertEqual(b'\0\0abcde', f.read()) - - def test_append_mode_tell_linux_windows(self): -+ # skipping real fs test - python2 on the actual filesystem is also 7 -+ self.skip_real_fs() - # Regression test for #300 - self.check_linux_and_windows() - tell_result = 5 if self.is_python2 else 7 -@@ -2443,8 +2444,8 @@ - # trying to create a link from a non-existent file should fail - self.skip_if_symlink_not_supported() - self.assert_raises_os_error(errno.ENOENT, -- self.os.link, '/nonexistent_source', -- '/link_dest') -+ self.os.link, 'nonexistent_source', -+ 'link_dest') - - def test_link_delete(self): - self.skip_if_symlink_not_supported() -@@ -2791,7 +2792,6 @@ - self.os.chdir(directory) - self.assert_raises_os_error(dir_error, self.os.remove, dir_path) - self.assertTrue(self.os.path.exists(dir_path)) -- self.assert_raises_os_error(errno.ENOENT, self.os.remove, '/Plugh') - - def test_remove_dir_mac_os(self): - self.check_macos_only() diff --git a/dev-python/pyfakefs/pyfakefs-3.4.3.ebuild b/dev-python/pyfakefs/pyfakefs-3.4.3.ebuild deleted file mode 100644 index b007cb54b5c5..000000000000 --- a/dev-python/pyfakefs/pyfakefs-3.4.3.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python{2_7,3_6} pypy3 ) -DISTUTILS_IN_SOURCE_BUILD=1 - -inherit distutils-r1 - -DESCRIPTION="a fake file system that mocks the Python file system modules" -HOMEPAGE="https://github.com/jmcgeheeiv/pyfakefs/ https://pypi.org/project/pyfakefs/" -SRC_URI="https://github.com/jmcgeheeiv/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm x86" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="" - -PATCHES=( "${FILESDIR}"/${P}-tests.patch ) - -python_test() { - "${PYTHON}" -m ${PN}.tests.all_tests || die "tests failed under ${EPYTHON}" -} diff --git a/dev-python/pyfakefs/pyfakefs-3.5.8.ebuild b/dev-python/pyfakefs/pyfakefs-3.5.8.ebuild deleted file mode 100644 index 6386a5b02bc7..000000000000 --- a/dev-python/pyfakefs/pyfakefs-3.5.8.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python{2_7,3_6,3_7} pypy3 ) -DISTUTILS_IN_SOURCE_BUILD=1 - -inherit distutils-r1 - -DESCRIPTION="a fake file system that mocks the Python file system modules" -HOMEPAGE="https://github.com/jmcgeheeiv/pyfakefs/ https://pypi.org/project/pyfakefs/" -SRC_URI="https://github.com/jmcgeheeiv/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -COMMON_DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="${COMMON_DEPEND}" -DEPEND="${COMMON_DEPEND} - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" - -PATCHES=( "${FILESDIR}"/pyfakefs-3.4.3-tests.patch ) - -python_test() { - "${PYTHON}" -m ${PN}.tests.all_tests || die "tests failed under ${EPYTHON}" -} |