From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 54AF315800A for ; Mon, 24 Jul 2023 11:31:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C9DEE08DA; Mon, 24 Jul 2023 11:31:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88D3EE08DA for ; Mon, 24 Jul 2023 11:31:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CDA99340FAC for ; Mon, 24 Jul 2023 11:31:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 579DBC2D for ; Mon, 24 Jul 2023 11:31:24 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1690198267.fbbb5d9fdee0f8540278a5dafd7a994bf620e912.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-sortedm2m/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/django-sortedm2m/django-sortedm2m-3.1.1.ebuild X-VCS-Directories: dev-python/django-sortedm2m/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fbbb5d9fdee0f8540278a5dafd7a994bf620e912 X-VCS-Branch: master Date: Mon, 24 Jul 2023 11:31:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c22e9f66-f341-4cd5-9af6-7564c2cae55e X-Archives-Hash: 915a15bde1918705f5ac3f60f9bac3f1 commit: fbbb5d9fdee0f8540278a5dafd7a994bf620e912 Author: Michał Górny gentoo org> AuthorDate: Mon Jul 24 11:18:41 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jul 24 11:31:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbbb5d9f dev-python/django-sortedm2m: Remove old Signed-off-by: Michał Górny gentoo.org> .../django-sortedm2m/django-sortedm2m-3.1.1.ebuild | 35 ---------------------- 1 file changed, 35 deletions(-) diff --git a/dev-python/django-sortedm2m/django-sortedm2m-3.1.1.ebuild b/dev-python/django-sortedm2m/django-sortedm2m-3.1.1.ebuild deleted file mode 100644 index 7228f7b501ec..000000000000 --- a/dev-python/django-sortedm2m/django-sortedm2m-3.1.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..11} ) -inherit distutils-r1 - -DESCRIPTION="Drop-in replacement for django's many to many field with sorted relations" -HOMEPAGE="https://pypi.org/project/django-sortedm2m/ - https://github.com/jazzband/django-sortedm2m" -SRC_URI=" - https://github.com/jazzband/django-sortedm2m/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" - -LICENSE="BSD" -KEYWORDS="~amd64 ~x86" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/django[${PYTHON_USEDEP}]" -BDEPEND=" - test? ( - $(python_gen_impl_dep sqlite) - ${RDEPEND} - )" - -python_test() { - local -x PYTHONPATH=test_project:${PYTHONPATH} - local -x DB_ENGINE=sqlite3 - local -x DB_NAME=":memory:" - django-admin test -v 2 --settings=settings --noinput sortedm2m_tests || - die "Tests fail with ${EPYTHON}" -}