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-taggit/
Date: Sat, 30 Jan 2021 20:27:20
Message-Id: 1612038399.f7a64d2c909649ecaa69623592c4c97e1e2be358.conikost@gentoo
1 commit: f7a64d2c909649ecaa69623592c4c97e1e2be358
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 30 20:15:11 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 30 20:26:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7a64d2c
7
8 dev-python/django-taggit: bump to version 1.3.0
9
10 Also added python3_9 support.
11
12 Closes: https://bugs.gentoo.org/767016
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-taggit/Manifest | 1 +
17 dev-python/django-taggit/django-taggit-1.3.0.ebuild | 18 ++++++++++++++++++
18 2 files changed, 19 insertions(+)
19
20 diff --git a/dev-python/django-taggit/Manifest b/dev-python/django-taggit/Manifest
21 index d120a08b191..a678d25feb3 100644
22 --- a/dev-python/django-taggit/Manifest
23 +++ b/dev-python/django-taggit/Manifest
24 @@ -1 +1,2 @@
25 DIST django-taggit-1.2.0.tar.gz 42938 BLAKE2B 0de8e942c28ce1b268742150061c78221aa957c2574d3df617e72f71104287e73f14fa66ade1e8642459cb1f0400e8d0f995ccd1fe7182bd8f980bb5b3595448 SHA512 7e074ba5ce2399ae0a85da0726b8a945b1da5c22afa9f6fe47b1ad6d65257b54de3b9596091872a48a8a12f53393bdea97aee5f32e42cb0658ae39475a003c78
26 +DIST django-taggit-1.3.0.tar.gz 46986 BLAKE2B ebe425bc17b67977d40c56b9072ef471e1239090056667f1a5792f005908cbffc31f9eb863575ff7d3d359ebef7263e085bad5b7b481ed9060720bd59f617bb3 SHA512 bd5a537fc11bc4b434a5dbbc11e583acb3878101fcfa7e24af3aca5f160e2f1ac8defc9454c0814d39eb47bbb8edea8d3cf47627ad4b4dc86b962cd69d415ccd
27
28 diff --git a/dev-python/django-taggit/django-taggit-1.3.0.ebuild b/dev-python/django-taggit/django-taggit-1.3.0.ebuild
29 new file mode 100644
30 index 00000000000..036c3c00c75
31 --- /dev/null
32 +++ b/dev-python/django-taggit/django-taggit-1.3.0.ebuild
33 @@ -0,0 +1,18 @@
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="Simple tagging for Django"
43 +HOMEPAGE="https://github.com/jazzband/django-taggit"
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=">=dev-python/django-1.11[${PYTHON_USEDEP}]"
51 +DEPEND="${RDEPEND}"