public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/requests-cache/
Date: Tue,  7 Sep 2021 20:50:21 +0000 (UTC)	[thread overview]
Message-ID: <1631047281.ddacab4dca6767966aea84c005a6afc1d6d8db61.mgorny@gentoo> (raw)

commit:     ddacab4dca6767966aea84c005a6afc1d6d8db61
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  7 20:41:21 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Sep  7 20:41:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddacab4d

dev-python/requests-cache: Bump to 0.8.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/requests-cache/Manifest                 |  1 +
 .../requests-cache/requests-cache-0.8.0.ebuild     | 54 ++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/requests-cache/Manifest b/dev-python/requests-cache/Manifest
index 99ad63155c1..5be3e760ee2 100644
--- a/dev-python/requests-cache/Manifest
+++ b/dev-python/requests-cache/Manifest
@@ -3,3 +3,4 @@ DIST requests-cache-0.7.1.gh.tar.gz 959455 BLAKE2B ce41514f21dc0708e437f70b92eb9
 DIST requests-cache-0.7.2.gh.tar.gz 962215 BLAKE2B 0f66548b4c37c14347021a4675d0165b9f9648dc9842f1d94c9507c096f6ef359f7109f88ac369de2de263673542f42d6e4a7402449354aee900970331f87cea SHA512 1712f3568ec4c8c41988c9d2ca07e72b1a66efceb596d814219b5eb9bb0c05448ee33b4634ec39fb03634032a6bfaaf877b297be7f92f540788dba40b4c202df
 DIST requests-cache-0.7.3.gh.tar.gz 1182825 BLAKE2B bc2b936f3b13388c23c344119a0ae2dc8efae3ba243e3a176ac27a7affb9b1c691e99ee88dfa61823a5c517ea898f144c7a9450867ea611c8518a0ecb3d77287 SHA512 fca494438001d14b0edce2cf93f51f65a0bf363d31bf1c70d1a4b2f214fe7bfc6f6f6fc97d21357fcfb9ab38c83d76cabe9c0ff4703171679ce509bd9f55753f
 DIST requests-cache-0.7.4.gh.tar.gz 1254975 BLAKE2B f0df6ac156665f8eed8850e153bfa3738d8c6677ff1613a54fcbf3208861c590e5e0ede3d5c30eeda36dcd709390402a020e03a0180e701e0751c5c982903a35 SHA512 684a3182135b6a31816629c8b4a174b52a629e964a5862573df1ac6e9e9b5cb807d1661a3a6daf8cc4b2a0f6778bd780d822a2f6c409242aa090c6565adf0aab
+DIST requests-cache-0.8.0.gh.tar.gz 1642151 BLAKE2B e341707b2473438a8c4155350bce3e0fc712537692991e23965aa6504e8eed735caae8b103896bd324882a8f73f13f36b23b329c3c155864c1b7665c6bcc4e2a SHA512 b9f1769f70b33f128aacf05a2251f9d2511649a4e80cb702c14ac3fcbfaf72d1049a5792a295286b6969985320a0d5a87ef81bfe3bacbbc200042ba51889b7ea

diff --git a/dev-python/requests-cache/requests-cache-0.8.0.ebuild b/dev-python/requests-cache/requests-cache-0.8.0.ebuild
new file mode 100644
index 00000000000..61afa9af045
--- /dev/null
+++ b/dev-python/requests-cache/requests-cache-0.8.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+HOMEPAGE="
+	https://pypi.org/project/requests-cache/
+	https://github.com/reclosedev/requests-cache/"
+DESCRIPTION="Persistent cache for requests library"
+SRC_URI="
+	https://github.com/reclosedev/requests-cache/archive/v${PV}.tar.gz
+		-> ${P}.gh.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-python/cattrs[${PYTHON_USEDEP}]
+	dev-python/itsdangerous[${PYTHON_USEDEP}]
+	>=dev-python/requests-2.0.0[${PYTHON_USEDEP}]
+	>=dev-python/url-normalize-1.4[${PYTHON_USEDEP}]"
+BDEPEND="
+	test? (
+		dev-python/pytest-httpbin[${PYTHON_USEDEP}]
+		dev-python/requests-mock[${PYTHON_USEDEP}]
+		dev-python/responses[${PYTHON_USEDEP}]
+		dev-python/timeout-decorator[${PYTHON_USEDEP}]
+	)"
+
+distutils_enable_tests pytest
+
+python_test() {
+	local EPYTEST_IGNORE=(
+		# These require extra servers running
+		tests/integration/test_dynamodb.py
+		tests/integration/test_gridfs.py
+		tests/integration/test_mongodb.py
+		tests/integration/test_redis.py
+	)
+	local EPYTEST_DESELECT=(
+		# Requires Internet access
+		tests/integration/test_compat.py::test_version_upgrade
+	)
+
+	local -x USE_PYTEST_HTTPBIN=true
+	epytest
+}


             reply	other threads:[~2021-09-07 20:50 UTC|newest]

Thread overview: 99+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-07 20:50 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-03-07 12:45 [gentoo-commits] repo/gentoo:master commit in: dev-python/requests-cache/ Michał Górny
2024-07-11 16:37 Michał Górny
2024-07-06  6:35 Michał Górny
2024-07-06  6:26 Sam James
2024-06-19  4:36 Michał Górny
2024-03-07 16:24 Michał Górny
2024-03-07 16:24 Michał Górny
2024-03-07 16:22 Michał Górny
2024-02-18  3:36 Michał Górny
2023-12-09 14:04 Michał Górny
2023-12-09 14:00 Michał Górny
2023-11-20 17:03 Michał Górny
2023-11-19 16:01 Michał Górny
2023-10-24 17:51 Michał Górny
2023-10-13 15:27 Arthur Zamarin
2023-10-06 17:44 Arthur Zamarin
2023-10-06 14:52 Sam James
2023-09-10  5:27 WANG Xuerui
2023-08-14 17:57 Jakov Smolić
2023-08-13 16:10 Arthur Zamarin
2023-08-13 16:08 Arthur Zamarin
2023-08-03 17:40 Michał Górny
2023-08-03 15:10 Sam James
2023-07-01  5:22 Michał Górny
2023-04-28 15:57 Arthur Zamarin
2023-04-28 15:55 Arthur Zamarin
2023-04-05  8:19 Michał Górny
2023-04-05  7:39 Arthur Zamarin
2023-03-25  6:39 Michał Górny
2023-03-02 16:49 Michał Górny
2023-03-02  5:13 Michał Górny
2023-02-17  6:21 Michał Górny
2023-02-16 22:50 Sam James
2023-01-14  4:57 Michał Górny
2022-11-30  2:48 Michał Górny
2022-11-29 21:46 Jakov Smolić
2022-10-27 11:30 Andrew Ammerlaan
2022-10-27  4:49 Michał Górny
2022-10-03  6:50 Michał Górny
2022-09-02 17:37 Michał Górny
2022-08-02 20:27 Sam James
2022-06-30  4:27 Michał Górny
2022-05-27 19:45 Michał Górny
2022-05-27 19:45 Michał Górny
2022-05-27  9:07 Jakov Smolić
2022-04-26 10:56 Michał Górny
2022-03-16  8:00 Michał Górny
2022-02-23  8:12 Michał Górny
2022-02-15 23:09 Michał Górny
2022-02-04 10:27 Michał Górny
2022-02-04  9:03 Jakov Smolić
2022-01-27  9:21 Michał Górny
2022-01-15 20:51 Arthur Zamarin
2022-01-02 10:59 Michał Górny
2021-10-11  6:04 Michał Górny
2021-10-11  0:02 Sam James
2021-09-27 20:21 Sam James
2021-09-27 11:32 Arthur Zamarin
2021-09-27 11:01 Arthur Zamarin
2021-09-27 11:00 Arthur Zamarin
2021-09-18 17:18 Sam James
2021-09-15 20:26 Michał Górny
2021-09-15 20:26 Michał Górny
2021-08-29 17:57 Sam James
2021-08-17  7:28 Michał Górny
2021-08-11  6:46 Michał Górny
2021-07-22  7:25 Michał Górny
2021-07-17 13:11 Michał Górny
2021-07-17  7:42 Agostino Sarubbo
2021-07-10 17:46 Michał Górny
2021-06-13  6:10 Michał Górny
2021-06-13  3:45 Sam James
2021-06-06 23:19 Sam James
2021-06-05  8:28 Michał Górny
2021-05-25 11:14 Sam James
2021-05-19 18:21 Michał Górny
2021-04-22  7:36 Michał Górny
2021-04-15  6:32 Michał Górny
2021-04-14  7:19 Michał Górny
2020-10-07 10:16 Michał Górny
2020-09-18 15:43 Michał Górny
2020-09-18 15:11 Agostino Sarubbo
2020-09-08 19:11 Michał Górny
2020-08-05  5:48 Sam James
2020-08-05  5:43 Sam James
2020-08-05  5:43 Sam James
2020-05-07 13:51 Mikle Kolyada
2020-05-07 12:23 Mikle Kolyada
2020-05-07 12:23 Mikle Kolyada
2020-05-06  6:04 Michał Górny
2020-05-06  6:04 Michał Górny
2020-05-06  6:04 Michał Górny
2020-05-05 20:58 Mike Frysinger
2018-06-26 18:09 Pacho Ramos
2017-05-02 14:02 Michał Górny
2017-02-22 16:08 Agostino Sarubbo
2017-02-22 15:06 Agostino Sarubbo
2016-06-29 10:33 Patrick Lauer

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=1631047281.ddacab4dca6767966aea84c005a6afc1d6d8db61.mgorny@gentoo \
    --to=mgorny@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