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 D2089158094 for ; Tue, 20 Sep 2022 16:55:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15C13E0C24; Tue, 20 Sep 2022 16:55:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B0387E0C24 for ; Tue, 20 Sep 2022 16:55:42 +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 048E8340D67 for ; Tue, 20 Sep 2022 16:55:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7243E5FA for ; Tue, 20 Sep 2022 16:55:38 +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: <1663692930.2104111e9ffcd1d995e16c74abff4f6256c28c1b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/paperwork-backend/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild X-VCS-Directories: app-text/paperwork-backend/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2104111e9ffcd1d995e16c74abff4f6256c28c1b X-VCS-Branch: master Date: Tue, 20 Sep 2022 16:55:38 +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: f3938c6a-e7d8-4d52-b8ec-a0f2cffd64ea X-Archives-Hash: ef663c95e82a0f13759333c7d7380adc commit: 2104111e9ffcd1d995e16c74abff4f6256c28c1b Author: Michał Górny gentoo org> AuthorDate: Tue Sep 20 16:26:47 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Sep 20 16:55:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2104111e app-text/paperwork-backend: Fix compat w/ new Levenshtein pkg Closes: https://bugs.gentoo.org/872071 Signed-off-by: Michał Górny gentoo.org> app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild b/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild index 5667253b8140..fc9f7013f9c4 100644 --- a/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild +++ b/app-text/paperwork-backend/paperwork-backend-2.1.1-r1.ebuild @@ -41,3 +41,10 @@ BDEPEND=" " distutils_enable_tests unittest + +src_prepare() { + # remove dep to allow both old python-Levenshtein and new + # Levenshtein packages + sed -i -e '/python-Levenshtein/d' setup.py || die + distutils-r1_src_prepare +}