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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 89161138350 for ; Thu, 26 Mar 2020 20:35:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E49C5E0D08; Thu, 26 Mar 2020 20:35:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C6D01E0D08 for ; Thu, 26 Mar 2020 20:35:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 59CCB34FA8A for ; Thu, 26 Mar 2020 20:35:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D619F1D8 for ; Thu, 26 Mar 2020 20:35:17 +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: <1585254896.75ddc095581ff13b51661d52a9367e353b219325.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/diff-match-patch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/diff-match-patch/Manifest dev-python/diff-match-patch/diff-match-patch-20121119.ebuild X-VCS-Directories: dev-python/diff-match-patch/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 75ddc095581ff13b51661d52a9367e353b219325 X-VCS-Branch: master Date: Thu, 26 Mar 2020 20:35:17 +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: 99c739c6-3269-4db3-bf9e-0c8261a65823 X-Archives-Hash: 02d421bbbe532f593db7fde3e8888402 commit: 75ddc095581ff13b51661d52a9367e353b219325 Author: Michał Górny gentoo org> AuthorDate: Thu Mar 26 20:30:06 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Mar 26 20:34:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75ddc095 dev-python/diff-match-patch: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/diff-match-patch/Manifest | 1 - .../diff-match-patch-20121119.ebuild | 24 ---------------------- 2 files changed, 25 deletions(-) diff --git a/dev-python/diff-match-patch/Manifest b/dev-python/diff-match-patch/Manifest index 06b4f7187b9..6278567ccc5 100644 --- a/dev-python/diff-match-patch/Manifest +++ b/dev-python/diff-match-patch/Manifest @@ -1,2 +1 @@ -DIST diff-match-patch-20121119.tar.gz 54113 BLAKE2B 0fcfa46f02f92af0e31ded7c51c651574104fb4d7d70082873981138579b12231dea0eee417614981a96f7ceaa50b288fefdbc21dca687451095dcdc34fe32f8 SHA512 3daff80a6043a0413c515125a21839d9fa1d71f7e2441f4870ebefed35f1accea711814ad231c65de0e3468bbd01402c977fc063ab120b7d9f0e04ef555a8207 DIST diff-match-patch-20181111.tar.gz 58554 BLAKE2B 2a74294bb9ac88447cdea794a9c3b44d705d93f7e0777d5e5ece4a306f43df47458a4ba0ec8b16624862a6e4540a605695c3a83ee7dad7749b22210ebe65705a SHA512 9b21726b9c0e350553533c14dd86cca823c6f98ab642e7166cf9348952a57b62bcb0576e3d6a3b76655ea1bcc8cef3fe7f33ffb068b5a4bfb4b4b521042484e6 diff --git a/dev-python/diff-match-patch/diff-match-patch-20121119.ebuild b/dev-python/diff-match-patch/diff-match-patch-20121119.ebuild deleted file mode 100644 index 4fee9e26e1f..00000000000 --- a/dev-python/diff-match-patch/diff-match-patch-20121119.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Diff, match and patch algorithms for plain text" -HOMEPAGE="https://pypi.org/project/diff-match-patch/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 arm64 x86" -IUSE="" - -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" - -python_test() { - esetup.py test -}