bump responses-0.12.0

This commit is contained in:
Andreas Billmeier 2020-09-13 06:52:00 +02:00 committed by Andreas Billmeier
parent cf3eff8b7c
commit f216f5d837
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 0 deletions

View File

@ -10,6 +10,7 @@ To remove the (conflicting) wrong one, do a:
2020-09-13
* bump youtube_dl-2020.9.6
* bump pytest-timeout-1.4.2
* bump responses-0.12.0
2020-09-12 homeassistant-0.115.0_beta7
* bump pyloopenergy-0.2.1

View File

@ -1,3 +1,5 @@
DIST responses-0.10.6.tar.gz 22102 BLAKE2B fa4efe73ef32fcf5fb16f06c6a2f322be6aea1a94b974efa1e997ce26600cb0effe69d7311f8dad7ed1a05f7d4f9a7f56632fa3f14bccedb56329c4cd3aa4322 SHA512 7f56d4aded3425f7eef969b44ae1afb3495d521cd32f0554a5edbb51510bdd51fe358938e126f6fe45f465b316d53cb64185873bd9060c4acacfafca9f7f6365
DIST responses-0.12.0.tar.gz 26527 BLAKE2B 71769b683f9c672d52844803e76ff66def61a2a56f788d93cfbad5a7e0f967b003244ee32f83430a97f7726c732b4e8b25baf65ec35535da1a6d609e4cfefe7c SHA512 484076f7942ff12977f06bcc850f1afcc9ae70ca2b7986a647c972893562d28cf3cd7226c87d8f5588fa4500be34dd5be0c7d1df6b8ddcd134455540d3dbe6d9
EBUILD responses-0.10.6.ebuild 835 BLAKE2B e7c23c77da2f31d5acb6275532aad5cedd823d7d7411af995eb1d649e2aac3b94917e1a94e90f3ddf6839657d731318d1f164bcea4878ecc7960059e03b859a7 SHA512 71727988f141a9e205eec5ac8e688ab58d9987358287ad6cde2755bae92b660f2d0325b15f0a6a13bf6873ad6654c4cdfeadfde19e2effb79a31f297ecbb5fee
EBUILD responses-0.12.0.ebuild 827 BLAKE2B 95f56414eb400b89ab266decc2cdf5f0fd8103d4cb208778955d5f412d86aa5b421094469835d8a8c2b0d4131436ca9da71b1395db555d64a98e5914476fb469 SHA512 0a91f40c61bec9403ffd5ff3865fac544ec269b28f5bc5458481c5aa6f912b177f23f0386b2e2f377127988834c31543fb3b83eca9e681e50970ea23bd7cecda
MISC metadata.xml 328 BLAKE2B 40fb0dac0481d1017d5ab7bda070575bd762259ebba42b7f1749d749764f757e0a18334a54dfdf7a0fad88ce4b92de004e020b5c5d8f7c7dcbdea6cd6d76a33b SHA512 073625aa8c00ac3baa02a9ae905d6378b445cf7d98f855fd4e6c39d8ceba4d02aae910a5a065e87c9fb32d604df042b98891030e5b3cb35aa5cc8f9a2a3410dc

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="A utility library for mocking out the requests Python library."
HOMEPAGE="https://github.com/getsentry/responses https://pypi.org/project/responses/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/cookies[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}