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 6AAF3158003 for ; Sun, 6 Nov 2022 07:59:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EACFE0869; Sun, 6 Nov 2022 07:59:30 +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 73ABCE086A for ; Sun, 6 Nov 2022 07:59:30 +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 9379E3412D5 for ; Sun, 6 Nov 2022 07:59:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C020B703 for ; Sun, 6 Nov 2022 07:59:26 +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: <1667721554.6c3b8d2cc057780791baefccf6ae0260986d3269.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsondiff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsondiff/jsondiff-2.0.0.ebuild X-VCS-Directories: dev-python/jsondiff/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6c3b8d2cc057780791baefccf6ae0260986d3269 X-VCS-Branch: master Date: Sun, 6 Nov 2022 07:59:26 +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: a123808f-ef24-4d8b-b5a0-d446693057a2 X-Archives-Hash: 6286ab9e8a67d17f47474ffb506ab2a2 commit: 6c3b8d2cc057780791baefccf6ae0260986d3269 Author: Michał Górny gentoo org> AuthorDate: Sun Nov 6 07:12:28 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 6 07:59:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c3b8d2c dev-python/jsondiff: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/jsondiff/jsondiff-2.0.0.ebuild | 37 ------------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-python/jsondiff/jsondiff-2.0.0.ebuild b/dev-python/jsondiff/jsondiff-2.0.0.ebuild deleted file mode 100644 index 831c1a974609..000000000000 --- a/dev-python/jsondiff/jsondiff-2.0.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) - -inherit distutils-r1 - -DESCRIPTION="Diff JSON and JSON-like structures in Python" -HOMEPAGE=" - https://github.com/xlwings/jsondiff/ - https://pypi.org/project/jsondiff/ -" -SRC_URI=" - https://github.com/xlwings/${PN}/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux" - -BDEPEND=" - test? ( - dev-python/nose-random[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests nose - -python_prepare_all() { - # Avoid file collision with jsonpatch's jsondiff cli. - sed -e "/'jsondiff=jsondiff.cli/ d" -i setup.py || die - distutils-r1_python_prepare_all -}