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/pytest-httpbin/
Date: Sat, 28 Mar 2020 18:49:14
Message-Id: 1585421319.fa58b13e653fb3a681476433713dbabd0ee476f8.mgorny@gentoo
1 commit: fa58b13e653fb3a681476433713dbabd0ee476f8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 18:40:22 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 18:48:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa58b13e
7
8 dev-python/pytest-httpbin: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-httpbin/Manifest | 1 -
13 .../pytest-httpbin/pytest-httpbin-0.2.3.ebuild | 38 ----------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/dev-python/pytest-httpbin/Manifest b/dev-python/pytest-httpbin/Manifest
17 index 1425c261b39..43084e95613 100644
18 --- a/dev-python/pytest-httpbin/Manifest
19 +++ b/dev-python/pytest-httpbin/Manifest
20 @@ -1,2 +1 @@
21 -DIST pytest-httpbin-0.2.3.tar.gz 9498 BLAKE2B ad41f72c80430eeea8c7f48185daf63c6adddfad36798179df27677aacc8af85419a678ba6f3df5281ca7f7ba0b3ee721cd97e5fe86eb5117417be53332f98e8 SHA512 f3c4eb67d1b02c27d8edb42622793fa3604e3f0bd5086e4986b8f0402a9fb8d7969a466be92fc6a7e301e829dbeb300183b40dccc9ec5da1d158cb4d08274f8b
22 DIST pytest-httpbin-1.0.0.gh.tar.gz 17813 BLAKE2B b7e0ad9f131e4d236161b66b1d6d8e6087285a6d52df1accb044b30bcdac6c5f3350e9dbfe1cf33ab64b6d6aac6b463de81c31fd12dd950426b6ed8ef4eaf289 SHA512 2794134cc005cb969752e0c1119459d3f1e106f679942880a6b9ff507f2ee31c8ac4146a9c01b9a920368ea516443954b1b7044f7b1c270fe251f7d36adf7661
23
24 diff --git a/dev-python/pytest-httpbin/pytest-httpbin-0.2.3.ebuild b/dev-python/pytest-httpbin/pytest-httpbin-0.2.3.ebuild
25 deleted file mode 100644
26 index a069b7e6f84..00000000000
27 --- a/dev-python/pytest-httpbin/pytest-httpbin-0.2.3.ebuild
28 +++ /dev/null
29 @@ -1,38 +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=( python2_7 python3_6 pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Easily test your HTTP library against a local copy of httpbin"
40 -HOMEPAGE="https://github.com/kevin1024/pytest-httpbin
41 - https://pypi.org/project/pytest-httpbin/"
42 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
47 -IUSE="test"
48 -
49 -RDEPEND="
50 - dev-python/decorator[${PYTHON_USEDEP}]
51 - dev-python/flask[${PYTHON_USEDEP}]
52 - dev-python/httpbin[${PYTHON_USEDEP}]
53 - dev-python/six[${PYTHON_USEDEP}]
54 -"
55 -DEPEND="${RDEPEND}
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - test? (
58 - dev-python/pytest[${PYTHON_USEDEP}]
59 - )"
60 -
61 -# Not includd
62 -RESTRICT=test
63 -
64 -python_test() {
65 - PYTEST_PLUGINS=pytest_httpbin \
66 - py.test -v -s || die
67 -}