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 401BB158094 for ; Tue, 26 Jul 2022 06:43:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B8FEE0F75; Tue, 26 Jul 2022 06:43:34 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3314FE0F75 for ; Tue, 26 Jul 2022 06:43:34 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 210C4340F9F for ; Tue, 26 Jul 2022 06:43:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79222510 for ; Tue, 26 Jul 2022 06:43:31 +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: <1658817486.476a5af58cb9094bed845216c7b5883f8e910a14.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/patiencediff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/patiencediff/patiencediff-0.2.2-r1.ebuild X-VCS-Directories: dev-python/patiencediff/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 476a5af58cb9094bed845216c7b5883f8e910a14 X-VCS-Branch: master Date: Tue, 26 Jul 2022 06:43:31 +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: b68ee5cc-d883-4839-bc7c-13f7810b9da2 X-Archives-Hash: 17c40ac053bb542057861076884eff20 commit: 476a5af58cb9094bed845216c7b5883f8e910a14 Author: Michał Górny gentoo org> AuthorDate: Tue Jul 26 06:37:36 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jul 26 06:38:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476a5af5 dev-python/patiencediff: PEP517, py3.11 Signed-off-by: Michał Górny gentoo.org> .../patiencediff/patiencediff-0.2.2-r1.ebuild | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/dev-python/patiencediff/patiencediff-0.2.2-r1.ebuild b/dev-python/patiencediff/patiencediff-0.2.2-r1.ebuild new file mode 100644 index 000000000000..0fed7fa1f361 --- /dev/null +++ b/dev-python/patiencediff/patiencediff-0.2.2-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 2021-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python implementation of the patiencediff algorithm" +HOMEPAGE=" + https://github.com/breezy-team/patiencediff/ + https://pypi.org/project/patiencediff/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +distutils_enable_tests unittest + +python_test() { + cd "${BUILD_DIR}/install$(python_get_sitedir)" || die + eunittest +}