From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B3F9C158091 for ; Wed, 1 Jun 2022 07:55:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD829E0878; Wed, 1 Jun 2022 07:55:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88E19E0878 for ; Wed, 1 Jun 2022 07:55:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0E95341B1E for ; Wed, 1 Jun 2022 07:55:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 017287F for ; Wed, 1 Jun 2022 07:55:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1654069996.578a0187a207b71a3be10a778f3a857228be1091.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httmock/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/httmock/Manifest dev-python/httmock/httmock-1.4.0-r1.ebuild X-VCS-Directories: dev-python/httmock/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 578a0187a207b71a3be10a778f3a857228be1091 X-VCS-Branch: master Date: Wed, 1 Jun 2022 07:55:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 89b6e68a-f247-44e5-89b2-d22a88735713 X-Archives-Hash: 9269ec7e126f9e765675139cc68caba5 commit: 578a0187a207b71a3be10a778f3a857228be1091 Author: Sam James gentoo org> AuthorDate: Wed Jun 1 07:53:16 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 1 07:53:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=578a0187 dev-python/httmock: update EAPI 7 -> 8 Signed-off-by: Sam James gentoo.org> dev-python/httmock/Manifest | 1 + dev-python/httmock/httmock-1.4.0-r1.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-python/httmock/Manifest b/dev-python/httmock/Manifest index ab823700c00c..50aef2fe19f9 100644 --- a/dev-python/httmock/Manifest +++ b/dev-python/httmock/Manifest @@ -1 +1,2 @@ +DIST httmock-1.4.0.gh.tar.gz 6439 BLAKE2B 68136f0dd3f1adb7f431893ade8037ce98de3870c5da094ec8a4dfde3eba07667989b71b957673e969548d7d5115455d02af2bcbb1eeb59dc0891e2ffac2c1ff SHA512 49dec760da7dc57a3fb0392c121ddbf9a430fa64c2a6f923ca62da2e697805a61941cde5cf35fc8af30de199227edd72d7f1985745ebd427b1f5d74807e3862c DIST httmock-1.4.0.tar.gz 6439 BLAKE2B 68136f0dd3f1adb7f431893ade8037ce98de3870c5da094ec8a4dfde3eba07667989b71b957673e969548d7d5115455d02af2bcbb1eeb59dc0891e2ffac2c1ff SHA512 49dec760da7dc57a3fb0392c121ddbf9a430fa64c2a6f923ca62da2e697805a61941cde5cf35fc8af30de199227edd72d7f1985745ebd427b1f5d74807e3862c diff --git a/dev-python/httmock/httmock-1.4.0-r1.ebuild b/dev-python/httmock/httmock-1.4.0-r1.ebuild new file mode 100644 index 000000000000..c6f1a1c6602a --- /dev/null +++ b/dev-python/httmock/httmock-1.4.0-r1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="A mocking library for requests" +HOMEPAGE="https://github.com/patrys/httmock" +SRC_URI="https://github.com/patrys/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=dev-python/requests-1.0.0[${PYTHON_USEDEP}]" + +distutils_enable_tests unittest