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 E53EF15800F for ; Tue, 7 Feb 2023 14:31:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B60AE07D3; Tue, 7 Feb 2023 14:31:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 D5ECBE07D3 for ; Tue, 7 Feb 2023 14:31:23 +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 04644340D81 for ; Tue, 7 Feb 2023 14:31:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4969D8B1 for ; Tue, 7 Feb 2023 14:31:20 +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: <1675780233.47e42fb5ae4c3a7d562011e7c3ff6981cd9892d6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-babel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/flask-babel/flask-babel-3.0.1-r1.ebuild dev-python/flask-babel/flask-babel-3.0.1.ebuild X-VCS-Directories: dev-python/flask-babel/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 47e42fb5ae4c3a7d562011e7c3ff6981cd9892d6 X-VCS-Branch: master Date: Tue, 7 Feb 2023 14:31:20 +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: ad88c963-e468-4d0c-9e77-5343e7b4690d X-Archives-Hash: 320524acdb61f2d4e216f47f09a99525 commit: 47e42fb5ae4c3a7d562011e7c3ff6981cd9892d6 Author: Michał Górny gentoo org> AuthorDate: Tue Feb 7 14:30:33 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Feb 7 14:30:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47e42fb5 dev-python/flask-babel: Fix stray files in site-packages Signed-off-by: Michał Górny gentoo.org> .../{flask-babel-3.0.1.ebuild => flask-babel-3.0.1-r1.ebuild} | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/flask-babel/flask-babel-3.0.1.ebuild b/dev-python/flask-babel/flask-babel-3.0.1-r1.ebuild similarity index 85% rename from dev-python/flask-babel/flask-babel-3.0.1.ebuild rename to dev-python/flask-babel/flask-babel-3.0.1-r1.ebuild index c11b51e41219..914d55fc495d 100644 --- a/dev-python/flask-babel/flask-babel-3.0.1.ebuild +++ b/dev-python/flask-babel/flask-babel-3.0.1-r1.ebuild @@ -39,3 +39,9 @@ BDEPEND=" distutils_enable_sphinx docs \ dev-python/pallets-sphinx-themes distutils_enable_tests pytest + +src_prepare() { + # https://github.com/python-babel/flask-babel/pull/215 + sed -i -e 's:^include:exclude:' pyproject.toml || die + distutils-r1_src_prepare +}