Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fudge/
Date: Fri, 27 Dec 2019 18:52:49
Message-Id: 1577472740.e3eba4a4bf8e7c60f9d1508d82d388725f1bdf68.soap@gentoo
1 commit: e3eba4a4bf8e7c60f9d1508d82d388725f1bdf68
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 27 18:52:20 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 27 18:52:20 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3eba4a4
7
8 dev-python/fudge: Remove old
9
10 Package-Manager: Portage-2.3.83, Repoman-2.3.20
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 dev-python/fudge/Manifest | 1 -
14 dev-python/fudge/fudge-0.9.6-r1.ebuild | 40 ----------------------------------
15 2 files changed, 41 deletions(-)
16
17 diff --git a/dev-python/fudge/Manifest b/dev-python/fudge/Manifest
18 index 020cfd7125f..75a79fdecdc 100644
19 --- a/dev-python/fudge/Manifest
20 +++ b/dev-python/fudge/Manifest
21 @@ -1,2 +1 @@
22 -DIST fudge-0.9.6.tar.gz 81653 BLAKE2B 106a0c774f9eb2f90beabfa1d84f55febaafa6c6e650b8d194464d9b7bdcf3b3ed18b943d0b7cad143f87febc75047d956d66521675c1f917f7835bf8585edd2 SHA512 69b2fa5bdd678779c0a8d9863a67e1e6724828720d2764f9f8958bc3598dcf39b22f9827efccb03014961d27d6e214c2125f639bab200b63c824c2306e3bb617
23 DIST fudge-1.1.0.tar.gz 86418 BLAKE2B 3264b693bb8d4e8a0849c480b48ee79e4e99a88a819f94bfab9c098fd8ccef1171f3f0a8ca7632f29b2c22998d0847e53fcc613bbdf8ac4c1fe33aeae406997c SHA512 061d9303d28509d4e22eb2036d041359f872be85911dd85bb16e4d13bfc1cf27637f8206f215f4a37d63108ab2500d2af3f6a1a3e206fe461ead9163e0519417
24
25 diff --git a/dev-python/fudge/fudge-0.9.6-r1.ebuild b/dev-python/fudge/fudge-0.9.6-r1.ebuild
26 deleted file mode 100644
27 index 91e4234c05d..00000000000
28 --- a/dev-python/fudge/fudge-0.9.6-r1.ebuild
29 +++ /dev/null
30 @@ -1,40 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -PYTHON_COMPAT=( python2_7 pypy )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Replace real objects with fakes (mocks, stubs, etc) while testing"
40 -HOMEPAGE="http://farmdev.com/projects/fudge/ https://pypi.org/project/fudge/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="MIT"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm64 x86"
46 -IUSE="doc test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND=""
50 -DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
51 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
52 -
53 -python_prepare_all() {
54 - find -name "._*" -delete || die
55 - distutils-r1_python_prepare_all
56 -}
57 -
58 -python_compile_all() {
59 - use doc && emake -C docs html
60 -}
61 -
62 -python_test() {
63 - nosetests -w "${BUILD_DIR}"/lib \
64 - || die "Tests fail with ${EPYTHON}"
65 -}
66 -
67 -python_install_all() {
68 - use doc && local HTML_DOCS=( docs/_build/html/. )
69 - distutils-r1_python_install_all
70 -}