From: "Louis Sautier" <sbraz@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests-mock/
Date: Sat, 29 Feb 2020 00:46:39 +0000 (UTC) [thread overview]
Message-ID: <1582937194.bcf09b570256d730edde8a5ad4bf7e5032e0e919.sbraz@gentoo> (raw)
commit: bcf09b570256d730edde8a5ad4bf7e5032e0e919
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 29 00:39:46 2020 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sat Feb 29 00:46:34 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcf09b57
dev-python/requests-mock: bump to 1.7.0, add Py3.8, improve ebuild
* Rely on distutils_enable_* functions.
* Run tests the standard way, get rid of unneeded test dependencies.
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/requests-mock/Manifest | 1 +
.../requests-mock/requests-mock-1.7.0.ebuild | 44 ++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/dev-python/requests-mock/Manifest b/dev-python/requests-mock/Manifest
index 8822b19bf45..335707e7e34 100644
--- a/dev-python/requests-mock/Manifest
+++ b/dev-python/requests-mock/Manifest
@@ -1,3 +1,4 @@
DIST requests-mock-1.2.0.tar.gz 40219 BLAKE2B b5ded6c97d920bab0c610c1be1c80f299e56cccd393c824b5c9ab3e0c298491b8be0b285c440bc8ba32eb1eec2eca14ec363d0f188c5b095192a56d01383c322 SHA512 ed24d1809aef597219ae2b0b376156a0760040795ccd660ee38f84cd1ceed58cbc5009764d7a365d31f941ee16e2b537b92ddcff92bcd8d47b7e95c67dc8d82c
DIST requests-mock-1.5.0.tar.gz 47824 BLAKE2B 90d540e2372430c70b0ada0bc48a3a8085452e062e9ab57a232d080df8312c2a722c01d61fb399fe2a6bc31a2d6d61914d8d0e2c912a2e439062b27bb31914cf SHA512 21838017ac4d3066e2240b40b27bbe16f3bd989f37eba90f0a0d0cdb997e7e65c6d9dc63b31f64daaa6146cc3c6bccbba86382eda3f2ca72eb7cc8381969af36
DIST requests-mock-1.5.2.tar.gz 47581 BLAKE2B 46beefc45e01355939a76b85e43a5b57cb1a870666eab7f610cad3e8a04a17da6a0864f9776a0f09028c847e8a4f7d0d2389a36f9a0431ed733a364d0f712c0b SHA512 206c91e892df84e38dcdf1264559128cfece76be2ce43b9c98238dfd438795d8c4ce3fcd43feb30246fbfca2d78832a23430ce1c9d3a7dc6e4417df5d65a8d3c
+DIST requests-mock-1.7.0.tar.gz 51705 BLAKE2B 1104422ab28678ee9e964fd853e7d61c23bc2f0dfb3861c2829578d1f91d533d195ce687fbc8596aba32da4b369050398d891125dc894e55fcb73ca81268b30c SHA512 6ad71fb87519f93812e8ae0d058a4b65a4492e86f05cacc37f95be1a6f0239a2c3f3d20a7e6f44bcc21f009574e4e78c2149394c2570d305efbdd68ec07b24a2
diff --git a/dev-python/requests-mock/requests-mock-1.7.0.ebuild b/dev-python/requests-mock/requests-mock-1.7.0.ebuild
new file mode 100644
index 00000000000..7c051fe7339
--- /dev/null
+++ b/dev-python/requests-mock/requests-mock-1.7.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Mock out responses from the requests package"
+HOMEPAGE="https://github.com/jamielennox/requests-mock"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+RDEPEND="
+ >=dev-python/requests-1.1[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ >=dev-python/pbr-0.8[${PYTHON_USEDEP}]
+ test? (
+ dev-python/fixtures[${PYTHON_USEDEP}]
+ dev-python/mock[${PYTHON_USEDEP}]
+ dev-python/testtools[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_sphinx doc/source
+distutils_enable_tests unittest
+
+python_prepare_all() {
+ # Disable reno which only works inside a git repository
+ sed -i "s/'reno.sphinxext',//" doc/source/conf.py || die
+ # Remove the release notes section which requires reno
+ rm doc/source/release-notes.rst || die
+ sed -i '/^=============$/,/release-notes/d' doc/source/index.rst || die
+ # Disable a test which requires purl (not in the tree)
+ sed -i -e "/^import purl$/d" -e "s/test_with_purl/_&/" \
+ tests/test_adapter.py || die
+ distutils-r1_python_prepare_all
+}
next reply other threads:[~2020-02-29 0:46 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-29 0:46 Louis Sautier [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-28 13:18 [gentoo-commits] repo/gentoo:master commit in: dev-python/requests-mock/ Michał Górny
2024-06-11 19:25 Michał Górny
2024-04-13 14:18 Michał Górny
2024-04-13 13:59 Sam James
2024-03-29 5:16 Michał Górny
2024-03-28 5:55 Michał Górny
2023-09-10 5:27 WANG Xuerui
2023-09-07 20:07 Sam James
2023-09-07 20:07 Sam James
2023-07-10 1:47 Michał Górny
2023-07-09 16:51 Arthur Zamarin
2023-06-09 2:15 Michał Górny
2023-05-31 16:49 Sam James
2023-05-29 7:31 Michał Górny
2023-03-17 15:25 Michał Górny
2022-10-03 8:28 Agostino Sarubbo
2022-10-03 8:24 Agostino Sarubbo
2022-10-03 0:44 Sam James
2022-08-31 18:07 Arthur Zamarin
2022-06-22 11:50 Michał Górny
2022-06-22 10:10 Agostino Sarubbo
2022-05-22 14:52 Andrew Ammerlaan
2022-05-22 14:52 Andrew Ammerlaan
2021-09-02 17:05 Marek Szuba
2021-07-07 22:29 Michał Górny
2021-07-07 2:17 Sam James
2021-07-03 6:29 Michał Górny
2021-07-03 6:17 Agostino Sarubbo
2021-06-05 21:20 Michał Górny
2021-06-05 20:35 Sam James
2021-05-28 7:34 Michał Górny
2021-04-30 12:22 Michał Górny
2021-04-28 10:24 Michał Górny
2021-04-28 8:16 Michał Górny
2020-08-07 1:10 Sam James
2020-07-11 8:22 Michał Górny
2020-07-11 8:22 Michał Górny
2020-07-09 8:59 Agostino Sarubbo
2020-06-09 20:06 Michał Górny
2020-05-18 13:23 Michał Górny
2020-05-04 12:17 Michał Górny
2020-05-03 19:02 Agostino Sarubbo
2020-05-03 7:08 Michał Górny
2020-02-29 0:46 Louis Sautier
2020-02-25 8:17 Georgy Yakovlev
2020-02-05 21:21 Michał Górny
2018-07-24 23:10 Louis Sautier
2018-07-24 22:59 Louis Sautier
2018-06-27 13:16 Louis Sautier
2018-03-10 14:56 Pacho Ramos
2017-10-04 8:57 Michał Górny
2017-03-26 4:16 Matt Thode
2017-02-27 5:29 Zac Medico
2017-02-27 4:27 Matt Thode
2016-11-06 21:39 Matt Thode
2016-06-29 18:18 Patrick Lauer
2016-02-17 8:57 Justin Lecher
2016-02-09 9:33 Justin Lecher
2015-11-03 19:32 Matt Thode
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1582937194.bcf09b570256d730edde8a5ad4bf7e5032e0e919.sbraz@gentoo \
--to=sbraz@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox