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-sortedm2m/
Date: Sun, 17 Oct 2021 07:42:00
Message-Id: 1634456503.089d8f0746a8323c0d69fe7fa8e32e2bdf30e042.mgorny@gentoo
1 commit: 089d8f0746a8323c0d69fe7fa8e32e2bdf30e042
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 17 07:39:26 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 17 07:41:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=089d8f07
7
8 dev-python/django-sortedm2m: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/django-sortedm2m/Manifest | 1 -
13 .../django-sortedm2m/django-sortedm2m-3.0.2.ebuild | 34 ----------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/dev-python/django-sortedm2m/Manifest b/dev-python/django-sortedm2m/Manifest
17 index 8fbaab22e0a..e111b753e40 100644
18 --- a/dev-python/django-sortedm2m/Manifest
19 +++ b/dev-python/django-sortedm2m/Manifest
20 @@ -1,2 +1 @@
21 -DIST django-sortedm2m-3.0.2.gh.tar.gz 44296 BLAKE2B 41dd4a7bc654fef638f7a387b1307ee32ca2d8733f4ba6b9fffc92a9ab4c6af7d64159cd5a24f4305483502609a1730fe12a3072f493251840ba840b98155877 SHA512 4e58ff37cdd798d88c47a8efee2bc783ad7109b30e023127345b6d12b176e452d6125fbcaba5392fc11660df3e8b66be4b23d5ff7ab90020f946cfedc80276a7
22 DIST django-sortedm2m-3.1.1.gh.tar.gz 45888 BLAKE2B 878a23d5f5dad114b0b6ef9bd687d4e23620c823a8ad33a66b7c6c1e598db15e5328a46373dd6d7fd9449b4ba533e21664db716cde40150af2451a74f2f28fda SHA512 440c049a1fbe54c0db8edb0a5a737b5d84553afb7305d21a64c2dbac02f143e6f17e7e0499a4d3e687b13f292558d7818c030d78d8cc9443048a95ae6b50204f
23
24 diff --git a/dev-python/django-sortedm2m/django-sortedm2m-3.0.2.ebuild b/dev-python/django-sortedm2m/django-sortedm2m-3.0.2.ebuild
25 deleted file mode 100644
26 index e88a9e197e2..00000000000
27 --- a/dev-python/django-sortedm2m/django-sortedm2m-3.0.2.ebuild
28 +++ /dev/null
29 @@ -1,34 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Drop-in replacement for django's many to many field with sorted relations"
40 -HOMEPAGE="https://pypi.org/project/django-sortedm2m/
41 - https://github.com/jazzband/django-sortedm2m"
42 -SRC_URI="
43 - https://github.com/jazzband/django-sortedm2m/archive/${PV}.tar.gz
44 - -> ${P}.gh.tar.gz"
45 -
46 -LICENSE="BSD"
47 -KEYWORDS="~amd64 ~x86"
48 -SLOT="0"
49 -IUSE="test"
50 -RESTRICT="!test? ( test )"
51 -
52 -RDEPEND="dev-python/django[${PYTHON_USEDEP}]"
53 -BDEPEND="
54 - test? (
55 - $(python_gen_impl_dep sqlite)
56 - ${RDEPEND}
57 - )"
58 -
59 -python_test() {
60 - local -x PYTHONPATH=test_project:${PYTHONPATH}
61 - django-admin test -v 2 --settings=settings --noinput sortedm2m_tests ||
62 - die "Tests fail with ${EPYTHON}"
63 -}