Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-timezone-field/
Date: Sat, 30 Jan 2021 20:27:21
Message-Id: 1612038401.d4699e8638773b1c116b6f52ca28fae8ebe4fcf3.conikost@gentoo
1 commit: d4699e8638773b1c116b6f52ca28fae8ebe4fcf3
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 30 20:20:16 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 30 20:26:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4699e86
7
8 dev-python/django-timezone-field: bump to version 4.1
9
10 Also added python3_9 support.
11
12 Closes: https://bugs.gentoo.org/767022
13 Package-Manager: Portage-3.0.14, Repoman-3.0.2
14 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
15
16 dev-python/django-timezone-field/Manifest | 1 +
17 .../django-timezone-field-4.1.ebuild | 22 ++++++++++++++++++++++
18 2 files changed, 23 insertions(+)
19
20 diff --git a/dev-python/django-timezone-field/Manifest b/dev-python/django-timezone-field/Manifest
21 index 670231f27e5..e14f2b6b962 100644
22 --- a/dev-python/django-timezone-field/Manifest
23 +++ b/dev-python/django-timezone-field/Manifest
24 @@ -1 +1,2 @@
25 DIST django-timezone-field-4.0.tar.gz 6866 BLAKE2B 1904dbdc6454109ab00df5008d36a9db9e8dc68215d1824c980ef82711871747d7b51a263d591968494511a33bc4325930dd7d87ba4b62d9386c78c5508d7680 SHA512 d928cc22d45f027b9d5776272cd8bc03b3d7e403d4ade293973e25a7ef96ab1ff6ccaa5bfce2900f579b52f5e8cd6c581054e944440d05b774457faf4ca9c9b1
26 +DIST django-timezone-field-4.1.tar.gz 8286 BLAKE2B 591a3d9a332102fd6b3a3cf865b1b9ca2ef1d7b37f6bc1a01ddc724050468d59ee5b6c14933203b6182a5efddad32e7e76b17980e415562404057b0e25393089 SHA512 3903e19ab66d636a4fa9c0364aa8232958c6b0d33c41253d57322320543e8f4993ff1eac2fdbee319b174e7e85fbb2dece9cd8db910913d4249de9eb862917e2
27
28 diff --git a/dev-python/django-timezone-field/django-timezone-field-4.1.ebuild b/dev-python/django-timezone-field/django-timezone-field-4.1.ebuild
29 new file mode 100644
30 index 00000000000..28c1051de69
31 --- /dev/null
32 +++ b/dev-python/django-timezone-field/django-timezone-field-4.1.ebuild
33 @@ -0,0 +1,22 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python3_{7..9} )
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="A Django app providing database and form fields for pytz timezone objects"
43 +HOMEPAGE="https://github.com/mfogel/django-timezone-field"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +
50 +RDEPEND="
51 + >=dev-python/django-2.2[${PYTHON_USEDEP}]
52 + dev-python/pytz[${PYTHON_USEDEP}]
53 +"
54 +
55 +DEPEND="${RDEPEND}"