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 2099915800F for ; Mon, 23 Jan 2023 19:38:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E7C2E0858; Mon, 23 Jan 2023 19:38:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 26AACE0858 for ; Mon, 23 Jan 2023 19:38: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BE26340F66 for ; Mon, 23 Jan 2023 19:38:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75E9B84D for ; Mon, 23 Jan 2023 19:38: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: <1674502675.8daa9d04b91159814bf037895800c6a0b4f1d712.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/keyring/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/keyring/keyring-23.13.1-r1.ebuild dev-python/keyring/keyring-23.13.1.ebuild X-VCS-Directories: dev-python/keyring/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8daa9d04b91159814bf037895800c6a0b4f1d712 X-VCS-Branch: master Date: Mon, 23 Jan 2023 19:38: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: ecf91b8a-feb2-401d-a8c2-1933fdc917ce X-Archives-Hash: 4349575bd05d017b68d78f1229fd6ef6 commit: 8daa9d04b91159814bf037895800c6a0b4f1d712 Author: Michał Górny gentoo org> AuthorDate: Mon Jan 23 19:37:55 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jan 23 19:37:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8daa9d04 dev-python/keyring: Install missing files Bug: https://github.com/jaraco/keyring/issues/621 Signed-off-by: Michał Górny gentoo.org> .../keyring/{keyring-23.13.1.ebuild => keyring-23.13.1-r1.ebuild} | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-python/keyring/keyring-23.13.1.ebuild b/dev-python/keyring/keyring-23.13.1-r1.ebuild similarity index 88% rename from dev-python/keyring/keyring-23.13.1.ebuild rename to dev-python/keyring/keyring-23.13.1-r1.ebuild index 91658714537e..fcef2b34ff55 100644 --- a/dev-python/keyring/keyring-23.13.1.ebuild +++ b/dev-python/keyring/keyring-23.13.1-r1.ebuild @@ -53,3 +53,10 @@ EPYTEST_IGNORE=( # hangs tests/backends/test_kwallet.py ) + +python_compile() { + distutils-r1_python_compile + # https://github.com/jaraco/keyring/issues/621 + python_moduleinto keyring + python_domodule keyring/{py.typed,*.zsh} +}