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 2DAE713835A for ; Tue, 17 Nov 2020 14:21:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CE2DE0975; Tue, 17 Nov 2020 14:21:12 +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 14E59E0909 for ; Tue, 17 Nov 2020 14:21:12 +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 99467335CEE for ; Tue, 17 Nov 2020 14:21:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1EF403FB for ; Tue, 17 Nov 2020 14:21:09 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1605622847.4b70516811bf49b4bb811189ae541a50546c9b0d.juippis@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-20200713.ebuild X-VCS-Directories: dev-python/diff-match-patch/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 4b70516811bf49b4bb811189ae541a50546c9b0d X-VCS-Branch: master Date: Tue, 17 Nov 2020 14:21:09 +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: 2a048469-ea50-48d4-b4fc-dcde742ee6c9 X-Archives-Hash: 52d25c7181bae89d7907fb74f49a8f5e commit: 4b70516811bf49b4bb811189ae541a50546c9b0d Author: Andrew Ammerlaan riseup net> AuthorDate: Mon Nov 9 12:55:11 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Nov 17 14:20:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b705168 dev-python/diff-match-patch: version bump, add py3.9 drop py3.6 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> Signed-off-by: Joonas Niilola gentoo.org> dev-python/diff-match-patch/Manifest | 1 + .../diff-match-patch/diff-match-patch-20200713.ebuild | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/dev-python/diff-match-patch/Manifest b/dev-python/diff-match-patch/Manifest index 6278567ccc5..98dd5bcdefd 100644 --- a/dev-python/diff-match-patch/Manifest +++ b/dev-python/diff-match-patch/Manifest @@ -1 +1,2 @@ DIST diff-match-patch-20181111.tar.gz 58554 BLAKE2B 2a74294bb9ac88447cdea794a9c3b44d705d93f7e0777d5e5ece4a306f43df47458a4ba0ec8b16624862a6e4540a605695c3a83ee7dad7749b22210ebe65705a SHA512 9b21726b9c0e350553533c14dd86cca823c6f98ab642e7166cf9348952a57b62bcb0576e3d6a3b76655ea1bcc8cef3fe7f33ffb068b5a4bfb4b4b521042484e6 +DIST diff-match-patch-20200713.tar.gz 60711 BLAKE2B 9108557050d0aced61e8073e0bfa1969e780e4350dba86e3cb159760d180b09ff2502e8b0a664370e0586bb0ca280f29cfebb983cddf051f10204e3cd1026d8f SHA512 f161efed3d87dd0693c98ee81aedb3868787f040f8f9f31015f9f1de04d50046be75b2351a65a4c26ae1d194b983dbc1420799cf70e7c25737ee4eb3cc78a183 diff --git a/dev-python/diff-match-patch/diff-match-patch-20200713.ebuild b/dev-python/diff-match-patch/diff-match-patch-20200713.ebuild new file mode 100644 index 00000000000..727acdc84be --- /dev/null +++ b/dev-python/diff-match-patch/diff-match-patch-20200713.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) + +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" + +distutils_enable_tests pytest