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: Wed, 09 Feb 2022 09:39:42
Message-Id: 1644397681.9ada9a8813df65e4a734be118ff94d9149777402.mgorny@gentoo
1 commit: 9ada9a8813df65e4a734be118ff94d9149777402
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 9 08:56:07 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 9 09:08:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ada9a88
7
8 dev-python/django-timezone-field: Bump to 5.0
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-5.0.ebuild | 41 ++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/django-timezone-field/Manifest b/dev-python/django-timezone-field/Manifest
17 index 9f4d4cd4679b..46086f68710a 100644
18 --- a/dev-python/django-timezone-field/Manifest
19 +++ b/dev-python/django-timezone-field/Manifest
20 @@ -1,2 +1,3 @@
21 DIST django-timezone-field-4.2.1.gh.tar.gz 23457 BLAKE2B 72452a21e6e086363da2ef40389d12b79860f66706e54fb9050ffe48f7fa6ad2908c75d4c7e17a79df339eac76492599dd4533ddca69a5b8757b46a36ed4b0fc SHA512 4c2da420c3aaffa23d8cdb66dbbe4b2ea8638de5a45d9e381bf9af980e52eba77fc03a2b8fee8497662199cdc9436d56543c0f6316e74ae5da68187a305c34a2
22 DIST django-timezone-field-4.2.3.gh.tar.gz 23605 BLAKE2B d183fb57254a6a1c86ca57558b88d5429d1d4d368c2cbf2f7a7f4d5414432fd80c5ae1df30793da185d5347afe8535dd821e7e605fb0693f26619b319894a6a3 SHA512 1a72ee557b5b527d2aeae9033c765272ebdd017d9e05708734e9bcdf6355e2747e1ce920a542dbead2d8fc6043024ece24adb3b27ccd6d0f2c8e5b3eb907e012
23 +DIST django-timezone-field-5.0.gh.tar.gz 33265 BLAKE2B 1d6c12ff6854463070dd6a5019cc2bfaf9514e5f6568057c684c7b061d28cc99416bac2796474fd2d884cd382e2c0e0a77883c35d4f7a7d2bb77a79255379268 SHA512 6fba9333463f1d68c0d5c6c85ad32b0106fa66be38c4e07e802222f25a0d0e024a77f36b17cb2644e89b76ea50ed667a324a9583b7b5dc0be7518ffa593335f8
24
25 diff --git a/dev-python/django-timezone-field/django-timezone-field-5.0.ebuild b/dev-python/django-timezone-field/django-timezone-field-5.0.ebuild
26 new file mode 100644
27 index 000000000000..10674e933208
28 --- /dev/null
29 +++ b/dev-python/django-timezone-field/django-timezone-field-5.0.ebuild
30 @@ -0,0 +1,41 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=poetry
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A Django app providing database and form fields for pytz timezone objects"
42 +HOMEPAGE="https://github.com/mfogel/django-timezone-field"
43 +SRC_URI="
44 + https://github.com/mfogel/django-timezone-field/archive/${PV}.tar.gz
45 + -> ${P}.gh.tar.gz"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +KEYWORDS="~amd64"
50 +
51 +RDEPEND="
52 + >=dev-python/django-2.2[${PYTHON_USEDEP}]
53 + dev-python/pytz[${PYTHON_USEDEP}]
54 + $(python_gen_cond_dep '
55 + dev-python/backports-zoneinfo[${PYTHON_USEDEP}]
56 + ' 3.8)
57 +"
58 +BDEPEND="
59 + test? (
60 + dev-python/djangorestframework[${PYTHON_USEDEP}]
61 + dev-python/pytest-django[${PYTHON_USEDEP}]
62 + dev-python/pytest-lazy-fixture[${PYTHON_USEDEP}]
63 + )
64 +"
65 +
66 +distutils_enable_tests pytest
67 +
68 +python_test() {
69 + local -x DB_ENGINE=sqlite
70 + epytest
71 +}