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/freezegun/
Date: Thu, 23 Jan 2020 06:51:42 +0000 (UTC)	[thread overview]
Message-ID: <1579762294.cc9fb9c2579e3c316b686e21294a77c78701c699.mgorny@gentoo> (raw)

commit:     cc9fb9c2579e3c316b686e21294a77c78701c699
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 23 05:46:34 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 23 06:51:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc9fb9c2

dev-python/freezegun: Bump to 0.3.14

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

 dev-python/freezegun/Manifest                |  2 +-
 dev-python/freezegun/freezegun-0.3.14.ebuild | 46 ++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+), 1 deletion(-)

diff --git a/dev-python/freezegun/Manifest b/dev-python/freezegun/Manifest
index e25a95658bf..b631dfb590d 100644
--- a/dev-python/freezegun/Manifest
+++ b/dev-python/freezegun/Manifest
@@ -1,4 +1,4 @@
 DIST freezegun-0.3.10.tar.gz 20398 BLAKE2B 971f4f3de565878b8a1e4671160f41cc7c558f5c848f5c79dfc48e3f3e3cb71ff9c71090705167d4252edbfee040ef52a7eafd33073011c07337311a7e0ec366 SHA512 64364459dc72484e2124a20a0a84d2b88617efd0578fba687adb51635d578a1e36a00cb119998082610c608e7b6c3589bff5424e38845bad026e85449c8065a5
-DIST freezegun-0.3.11.tar.gz 23382 BLAKE2B 759cc0355c8600fc46124dfb73b46a771de5cae4e66f5826c175295da96190920d7ff45b6457a061276c0c698bd448e294f29f3b89a0ed8fe76db58e1180b080 SHA512 e8b392176641d52f6ed795c9af5fbc0a62892aeedf32b42375b56ab44a9ad7a5ecd3bb81363ed0ae65204aff2ef894cd7f2e17f42be72f31d3409b2bffa59ab8
 DIST freezegun-0.3.12.tar.gz 24346 BLAKE2B 09d7c662a82d7b7fa6ae56c09bff0d73e2b63fba2b492620cd8e68ee06a15129a7e901418d1881e65b440babcfe0d014ad3574ab8dd2c7eab8486b3d868273ac SHA512 f7d98ea84735b24380fa53e1e62622fe91be5a35cb75221ca4cb02418add9b0a4add9b2f691242be75acbc45d4745fef82ffe3c89890dcdffa4405940e527af4
 DIST freezegun-0.3.13.tar.gz 25419 BLAKE2B 8334f921609463bcb18779b61b234bb80406924578ccd43ca1f4a10c65eddf87f399fa7fb285453808988c6f74331345a373cbdcb29f3bd412f3a9e472fce43c SHA512 682f689c475ee574e7a466bfa102b96545cd8b7f095c4b5bdfda496ef667c712248db414d66c9f17fdb1a492c0deeb87a07d8b2a4128d7fdd771f89d5ea8277f
+DIST freezegun-0.3.14.tar.gz 25327 BLAKE2B d96dd84e73e1cd0fdcb8846d97901260aeab80b8ee1d1cc35715073df9693238b8b4e8b8163c6b70daf828f0f7f9e13e202ff99f3325871faca3c4a4331d63cb SHA512 960e63206622bbbc378a64a62c9c849cda1380c63c148588a10347c1bc6414aebffbbbca6c53e734c8651824688c38b47aa71192d94edaac0422caebf4b1cb8c

diff --git a/dev-python/freezegun/freezegun-0.3.14.ebuild b/dev-python/freezegun/freezegun-0.3.14.ebuild
new file mode 100644
index 00000000000..c069ad36b75
--- /dev/null
+++ b/dev-python/freezegun/freezegun-0.3.14.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_{6,7,8}} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Let your Python tests travel through time"
+HOMEPAGE="https://github.com/spulec/freezegun"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+RDEPEND="
+	>dev-python/python-dateutil-2.0[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		$(python_gen_impl_dep sqlite)
+		dev-python/mock[${PYTHON_USEDEP}]
+		dev-python/nose[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	sed -r \
+		-e 's:(python-dateutil)>=2.0:\1:' \
+		-e "s:'(python-dateutil)>=[0-9.]+,.+':'\1':" \
+		-i setup.py
+
+	distutils-r1_python_prepare_all
+}
+
+python_prepare() {
+	# optional and only works with python3
+	if ! python_is_python3; then
+		rm freezegun/_async*.py || die
+	fi
+}


             reply	other threads:[~2020-01-23  6:51 UTC|newest]

Thread overview: 80+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-23  6:51 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-05-28 12:10 [gentoo-commits] repo/gentoo:master commit in: dev-python/freezegun/ Michał Górny
2024-05-12  2:25 Michał Górny
2024-05-09 17:32 Michał Górny
2024-05-08  8:15 Michał Górny
2024-04-24  2:03 Michał Górny
2024-01-06  9:54 Michał Górny
2024-01-06  9:50 Michał Górny
2023-12-20 15:56 Michał Górny
2023-12-19 17:26 Michał Górny
2023-12-05  4:29 Michał Górny
2023-12-04  6:48 Michał Górny
2023-05-25 14:38 Michał Górny
2023-03-16  3:50 Michał Górny
2022-09-20  5:57 Michał Górny
2022-09-19 19:47 Arthur Zamarin
2022-08-13  8:05 Michał Górny
2022-05-11 14:05 Michał Górny
2022-04-09 18:39 Michał Górny
2022-04-09 16:34 Arthur Zamarin
2022-03-18 22:28 Michał Górny
2022-03-09 20:06 Arthur Zamarin
2021-06-14 22:30 Michał Górny
2021-06-14 22:18 Sam James
2021-03-02  8:33 Michał Górny
2021-03-02  1:36 Sam James
2021-01-20  9:27 Michał Górny
2020-12-06 17:42 Michał Górny
2020-12-06 17:37 Sam James
2020-09-20 10:24 Michał Górny
2020-09-05 21:02 Michał Górny
2020-05-26  9:26 Michał Górny
2020-03-19 20:38 Mart Raudsepp
2020-03-05 12:49 Agostino Sarubbo
2020-03-05  9:27 Agostino Sarubbo
2020-03-05  9:27 Agostino Sarubbo
2020-03-05  9:26 Agostino Sarubbo
2020-03-05  9:24 Agostino Sarubbo
2020-03-05  9:07 Agostino Sarubbo
2020-03-05  8:21 Agostino Sarubbo
2020-03-05  8:19 Sergei Trofimovich
2020-03-04  5:01 Michał Górny
2020-02-18  5:44 Michał Górny
2020-02-12 16:14 Agostino Sarubbo
2020-01-27 11:56 Mikle Kolyada
2020-01-26 11:32 Sergei Trofimovich
2020-01-23 12:18 Agostino Sarubbo
2020-01-23 10:59 Agostino Sarubbo
2020-01-23 10:56 Agostino Sarubbo
2020-01-23 10:52 Agostino Sarubbo
2020-01-23 10:40 Agostino Sarubbo
2020-01-23 10:36 Agostino Sarubbo
2020-01-23  6:51 Michał Górny
2020-01-14  3:53 Michał Górny
2019-12-05  4:53 Patrick McLean
2019-01-21  2:39 Virgil Dupras
2019-01-21  2:39 Virgil Dupras
2018-12-29 16:29 Matt Turner
2018-10-14 15:20 Mikle Kolyada
2018-07-20 12:11 Tobias Klausmann
2018-07-13 18:46 Sergei Trofimovich
2018-06-30 17:55 Sergei Trofimovich
2018-06-27 21:54 Sergei Trofimovich
2018-05-29 20:05 Markus Meier
2018-05-08  7:11 Agostino Sarubbo
2018-05-07  7:41 Michał Górny
2018-05-07  7:41 Michał Górny
2018-05-07  0:12 Mart Raudsepp
2018-03-30 18:35 Aaron Bauman
2018-03-24 22:37 Tim Harder
2018-01-03 23:35 Michał Górny
2017-07-23 11:45 Manuel Rüger
2017-06-04 16:56 Michał Górny
2017-05-15 14:30 Manuel Rüger
2017-04-28 14:52 Manuel Rüger
2016-11-08 22:04 Manuel Rüger
2016-06-15  3:57 Mike Frysinger
2016-04-29 20:33 Manuel Rüger
2016-02-02 16:11 Manuel Rüger
2016-02-02 16:11 Manuel Rüger

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=1579762294.cc9fb9c2579e3c316b686e21294a77c78701c699.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