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/vcrpy/
Date: Sun, 29 Dec 2019 08:53:33
Message-Id: 1577609576.b5d8cede7f21ef7515cd6b03de0f2f6050f93ca2.soap@gentoo
1 commit: b5d8cede7f21ef7515cd6b03de0f2f6050f93ca2
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 08:52:56 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 08:52:56 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d8cede
7
8 dev-python/vcrpy: 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/vcrpy/Manifest | 1 -
14 dev-python/vcrpy/vcrpy-1.10.3.ebuild | 41 ------------------------------------
15 2 files changed, 42 deletions(-)
16
17 diff --git a/dev-python/vcrpy/Manifest b/dev-python/vcrpy/Manifest
18 index a2aa7cff1ed..06628019287 100644
19 --- a/dev-python/vcrpy/Manifest
20 +++ b/dev-python/vcrpy/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST vcrpy-1.10.3.tar.gz 61804 BLAKE2B 58ef423cb7a7c059cf7dc863565420be6829e6b692becfcf8a38b94121265aab832d77deb04cd1c3a622df7bd9bdf1540fc74f63c0f3f85373536cd35c23a01e SHA512 976f3d9b58025ab5c3a8a666138fbbadccaf8612edea63ac4fbf307d55888eb688bf27dd0f24b0d2c5528c951ced533a52cf13c33bfb32d7e89f241ff508018d
23 DIST vcrpy-1.11.1.tar.gz 63122 BLAKE2B da0fabb1eb342eb268923bcf433ac108d06fc111714834e99d9364358064ad0814bff1463f49bea60c59fe901c46fc8b78c4129e9bb4ab6736266f18b3bdf272 SHA512 d883b87d5b3017843dfc2e33241953ada27d50ffda4936ba4326a392acb9c7667474abd054d6e44b0208096cd96b68e87ec9780c0d6fab77369cc4e517617395
24 DIST vcrpy-1.12.0.tar.gz 326731 BLAKE2B a0fd5aa3fea1bef336f0864a6d89e7025d2394f89af23ac9a3ed61430c85b9a46584c528398a03debcce646767bd85328360513476bc89ca067e705767fe85fd SHA512 c47d50cd399fa11eb6fd1d210b056ef9768e501799a9774f7338370177754e35b9a9ee43ff5cb7f1f43073624f9011cc1ca230dbdf317c1bccd0ec6b506c61e0
25
26 diff --git a/dev-python/vcrpy/vcrpy-1.10.3.ebuild b/dev-python/vcrpy/vcrpy-1.10.3.ebuild
27 deleted file mode 100644
28 index de91d5b7b15..00000000000
29 --- a/dev-python/vcrpy/vcrpy-1.10.3.ebuild
30 +++ /dev/null
31 @@ -1,41 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -PYTHON_COMPAT=( python2_7 python3_5 pypy )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Automatically mock your HTTP interactions to simplify and speed up testing"
42 -HOMEPAGE="https://github.com/kevin1024/vcrpy"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -#SRC_URI="https://github.com/kevin1024/vcrpy/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="Apache-2.0"
47 -SLOT="0"
48 -KEYWORDS="amd64 x86"
49 -IUSE="test"
50 -RESTRICT="!test? ( test )"
51 -
52 -RDEPEND="
53 - >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
54 - dev-python/pyyaml[${PYTHON_USEDEP}]
55 - dev-python/requests[${PYTHON_USEDEP}]
56 - >=dev-python/six-1.5[${PYTHON_USEDEP}]
57 - dev-python/urllib3[${PYTHON_USEDEP}]
58 - dev-python/wrapt[${PYTHON_USEDEP}]
59 - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
60 - $(python_gen_cond_dep 'dev-python/contextlib2[${PYTHON_USEDEP}]' python2_7)
61 - "
62 -DEPEND="
63 - dev-python/setuptools[${PYTHON_USEDEP}]
64 - test? (
65 - ${RDEPEND}
66 - dev-python/pytest[${PYTHON_USEDEP}]
67 - dev-python/pytest-httpbin[${PYTHON_USEDEP}]
68 - )"
69 -
70 -python_test() {
71 - py.test -vv -x tests/unit || die
72 -}