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/vcrpy/
Date: Mon, 11 May 2020 17:49:06
Message-Id: 1589219304.656eacdc654008eb542e88eda78d584643d3304c.mgorny@gentoo
1 commit: 656eacdc654008eb542e88eda78d584643d3304c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 11 17:48:24 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 11 17:48:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=656eacdc
7
8 dev-python/vcrpy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/vcrpy/Manifest | 1 -
13 dev-python/vcrpy/vcrpy-1.11.1.ebuild | 44 ------------------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-python/vcrpy/Manifest b/dev-python/vcrpy/Manifest
17 index e1366f94896..899e2bb966f 100644
18 --- a/dev-python/vcrpy/Manifest
19 +++ b/dev-python/vcrpy/Manifest
20 @@ -1,2 +1 @@
21 -DIST vcrpy-1.11.1.tar.gz 63122 BLAKE2B da0fabb1eb342eb268923bcf433ac108d06fc111714834e99d9364358064ad0814bff1463f49bea60c59fe901c46fc8b78c4129e9bb4ab6736266f18b3bdf272 SHA512 d883b87d5b3017843dfc2e33241953ada27d50ffda4936ba4326a392acb9c7667474abd054d6e44b0208096cd96b68e87ec9780c0d6fab77369cc4e517617395
22 DIST vcrpy-4.0.2.tar.gz 324196 BLAKE2B 8910ba40bd56c7836a92c120c480e633063c78beb1d7c4dcfffb6180135cf0e28586410307ba3e19b3fa484a72a176dbf877f781ade7bae7c81110fde2eedd32 SHA512 17eebc9574ff14f97ad200b99c50b0440a93fbf38afe8ad95f443370d84c43177ac55ab655ffea7e7985b0cd76124eff3c394898e71a0ba0c434014f07e526f9
23
24 diff --git a/dev-python/vcrpy/vcrpy-1.11.1.ebuild b/dev-python/vcrpy/vcrpy-1.11.1.ebuild
25 deleted file mode 100644
26 index dd4a33310f3..00000000000
27 --- a/dev-python/vcrpy/vcrpy-1.11.1.ebuild
28 +++ /dev/null
29 @@ -1,44 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Automatically mock your HTTP interactions to simplify and speed up testing"
40 -HOMEPAGE="https://github.com/kevin1024/vcrpy"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -#SRC_URI="https://github.com/kevin1024/vcrpy/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -
50 -RDEPEND="
51 - >=dev-python/httplib2-0.9.1[${PYTHON_USEDEP}]
52 - dev-python/pyyaml[${PYTHON_USEDEP}]
53 - dev-python/requests[${PYTHON_USEDEP}]
54 - >=dev-python/six-1.5[${PYTHON_USEDEP}]
55 - dev-python/urllib3[${PYTHON_USEDEP}]
56 - dev-python/wrapt[${PYTHON_USEDEP}]
57 - dev-python/yarl[${PYTHON_USEDEP}]
58 - "
59 -DEPEND="
60 - dev-python/setuptools[${PYTHON_USEDEP}]
61 - test? (
62 - ${RDEPEND}
63 - dev-python/pytest[${PYTHON_USEDEP}]
64 - dev-python/pytest-httpbin[${PYTHON_USEDEP}]
65 - )"
66 -
67 -PATCHES=(
68 - "${FILESDIR}"/vcrpy-skip-network-tests.patch
69 -)
70 -
71 -python_test() {
72 - py.test -vv -x tests/unit || die
73 -}