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-taggit/
Date: Tue, 06 Jul 2021 06:34:07
Message-Id: 1625553238.b0386621ec3d3d4916eef1667b29f7cc44655706.mgorny@gentoo
1 commit: b0386621ec3d3d4916eef1667b29f7cc44655706
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 6 06:33:05 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 6 06:33:58 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0386621
7
8 dev-python/django-taggit: Bump to 1.5.1
9
10 Closes: https://bugs.gentoo.org/784260
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/django-taggit/Manifest | 1 +
14 .../django-taggit/django-taggit-1.5.1.ebuild | 28 ++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/dev-python/django-taggit/Manifest b/dev-python/django-taggit/Manifest
18 index 8139cb288d6..66c1a82b497 100644
19 --- a/dev-python/django-taggit/Manifest
20 +++ b/dev-python/django-taggit/Manifest
21 @@ -1 +1,2 @@
22 DIST django-taggit-1.3.0.tar.gz 46986 BLAKE2B ebe425bc17b67977d40c56b9072ef471e1239090056667f1a5792f005908cbffc31f9eb863575ff7d3d359ebef7263e085bad5b7b481ed9060720bd59f617bb3 SHA512 bd5a537fc11bc4b434a5dbbc11e583acb3878101fcfa7e24af3aca5f160e2f1ac8defc9454c0814d39eb47bbb8edea8d3cf47627ad4b4dc86b962cd69d415ccd
23 +DIST django-taggit-1.5.1.tar.gz 52766 BLAKE2B 59892ba591ad5cbc40a7515a6427722d7cb58e2daadec579b1c08dcc3522e24e041cbe06c953c3717cdf3db50aef7ff9fb5b4eac00344e457b61797745638107 SHA512 8e7afefd8f0654340e234f7bd1cc3684b3e5d1f4d94d17c79ed8fb82096c21a809e7f8db2fea9509d45c3f2bdc5e8ed52fb0823779b0a039f87528642803725b
24
25 diff --git a/dev-python/django-taggit/django-taggit-1.5.1.ebuild b/dev-python/django-taggit/django-taggit-1.5.1.ebuild
26 new file mode 100644
27 index 00000000000..27e3b3afdee
28 --- /dev/null
29 +++ b/dev-python/django-taggit/django-taggit-1.5.1.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..9} )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Simple tagging for Django"
40 +HOMEPAGE="https://github.com/jazzband/django-taggit"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64"
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +
49 +RDEPEND="
50 + >=dev-python/django-2.2[${PYTHON_USEDEP}]
51 + dev-python/djangorestframework[${PYTHON_USEDEP}]"
52 +BDEPEND="
53 + test? ( ${RDEPEND} )"
54 +
55 +python_test() {
56 + "${EPYTHON}" -m django test -v 2 --settings=tests.settings ||
57 + die "Tests failed with ${EPYTHON}"
58 +}