Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-timezone-field/
Date: Thu, 08 Jul 2021 06:55:42
Message-Id: 1625727329.40798293a378bb6890eedf0ab9bd2063a0cf2ed5.mgorny@gentoo
1 commit: 40798293a378bb6890eedf0ab9bd2063a0cf2ed5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 8 06:48:40 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 8 06:55:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40798293
7
8 dev-python/django-timezone-field: Bump to 4.2.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/django-timezone-field/Manifest | 1 +
13 .../django-timezone-field-4.2.1.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-python/django-timezone-field/Manifest b/dev-python/django-timezone-field/Manifest
17 index 3d8e03c30bd..c4c4246129f 100644
18 --- a/dev-python/django-timezone-field/Manifest
19 +++ b/dev-python/django-timezone-field/Manifest
20 @@ -1 +1,2 @@
21 DIST django-timezone-field-4.1.tar.gz 8286 BLAKE2B 591a3d9a332102fd6b3a3cf865b1b9ca2ef1d7b37f6bc1a01ddc724050468d59ee5b6c14933203b6182a5efddad32e7e76b17980e415562404057b0e25393089 SHA512 3903e19ab66d636a4fa9c0364aa8232958c6b0d33c41253d57322320543e8f4993ff1eac2fdbee319b174e7e85fbb2dece9cd8db910913d4249de9eb862917e2
22 +DIST django-timezone-field-4.2.1.gh.tar.gz 23457 BLAKE2B 72452a21e6e086363da2ef40389d12b79860f66706e54fb9050ffe48f7fa6ad2908c75d4c7e17a79df339eac76492599dd4533ddca69a5b8757b46a36ed4b0fc SHA512 4c2da420c3aaffa23d8cdb66dbbe4b2ea8638de5a45d9e381bf9af980e52eba77fc03a2b8fee8497662199cdc9436d56543c0f6316e74ae5da68187a305c34a2
23
24 diff --git a/dev-python/django-timezone-field/django-timezone-field-4.2.1.ebuild b/dev-python/django-timezone-field/django-timezone-field-4.2.1.ebuild
25 new file mode 100644
26 index 00000000000..0e61159b2c1
27 --- /dev/null
28 +++ b/dev-python/django-timezone-field/django-timezone-field-4.2.1.ebuild
29 @@ -0,0 +1,36 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="A Django app providing database and form fields for pytz timezone objects"
39 +HOMEPAGE="https://github.com/mfogel/django-timezone-field"
40 +SRC_URI="
41 + https://github.com/mfogel/django-timezone-field/archive/${PV}.tar.gz
42 + -> ${P}.gh.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +
48 +RDEPEND="
49 + >=dev-python/django-2.2[${PYTHON_USEDEP}]
50 + dev-python/pytz[${PYTHON_USEDEP}]
51 +"
52 +BDEPEND="
53 + test? (
54 + dev-python/djangorestframework[${PYTHON_USEDEP}]
55 + dev-python/pytest-django[${PYTHON_USEDEP}]
56 + dev-python/pytest-lazy-fixture[${PYTHON_USEDEP}]
57 + )
58 +"
59 +
60 +distutils_enable_tests pytest
61 +
62 +python_test() {
63 + local -x DB_ENGINE=sqlite
64 + epytest
65 +}