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 06013158093 for ; Sat, 2 Jul 2022 11:59:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38AA6E0C38; Sat, 2 Jul 2022 11:59:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 12022E0C38 for ; Sat, 2 Jul 2022 11:59:37 +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 C29D7341B98 for ; Sat, 2 Jul 2022 11:59:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3AD541E for ; Sat, 2 Jul 2022 11:59:34 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1656763104.eaaebdc9ddf443c907c734ab91130c9fb498fd30.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dictdiffer/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dictdiffer/dictdiffer-0.9.0.ebuild X-VCS-Directories: dev-python/dictdiffer/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: eaaebdc9ddf443c907c734ab91130c9fb498fd30 X-VCS-Branch: master Date: Sat, 2 Jul 2022 11:59:34 +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: 3aa360c9-34a2-4b3d-bbbc-e66605709fd4 X-Archives-Hash: 7b311d1f41ab8c18bc019cdc2a2f5f40 commit: eaaebdc9ddf443c907c734ab91130c9fb498fd30 Author: Arthur Zamarin gentoo org> AuthorDate: Sat Jul 2 11:58:24 2022 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Jul 2 11:58:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaaebdc9 dev-python/dictdiffer: drop 0.9.0 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/dictdiffer/dictdiffer-0.9.0.ebuild | 39 --------------------------- 1 file changed, 39 deletions(-) diff --git a/dev-python/dictdiffer/dictdiffer-0.9.0.ebuild b/dev-python/dictdiffer/dictdiffer-0.9.0.ebuild deleted file mode 100644 index 811c5f8ca379..000000000000 --- a/dev-python/dictdiffer/dictdiffer-0.9.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Dictdiffer is a library that helps you to diff and patch dictionaries" -HOMEPAGE=" - https://github.com/inveniosoftware/dictdiffer/ - https://pypi.org/project/dictdiffer/ -" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86" -SLOT="0" - -BDEPEND=" - dev-python/setuptools_scm[${PYTHON_USEDEP}] - test? ( - dev-python/numpy[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest -# Requires self to be already installed -#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme - -python_prepare_all() { - # remove dep on pytest-runner - sed -i -e '/pytest-runner/d' setup.py || die - - # remove dep on pytest-pep8 and pytest-cov - sed -i -e '/addopts/d' pytest.ini || die - - distutils-r1_python_prepare_all -}