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 26B7015ACFC for ; Tue, 2 May 2023 19:27:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69123E09FB; Tue, 2 May 2023 19:26:59 +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 54A65E09FB for ; Tue, 2 May 2023 19:26:59 +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 700B6341633 for ; Tue, 2 May 2023 19:26:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08B948E4 for ; Tue, 2 May 2023 19:26:57 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1683055598.e2e00e1f66e5dba2de1575b5782c052915b59c2a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/qtile/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/qtile/qtile-0.21.0-r1.ebuild x11-wm/qtile/qtile-0.22.1-r1.ebuild x11-wm/qtile/qtile-0.22.1.ebuild x11-wm/qtile/qtile-9999.ebuild X-VCS-Directories: x11-wm/qtile/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e2e00e1f66e5dba2de1575b5782c052915b59c2a X-VCS-Branch: master Date: Tue, 2 May 2023 19:26:57 +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: 9b05639d-41a6-4282-b06c-f2d0a773cc22 X-Archives-Hash: 2f7b0c07e4ae44a65b78ae4017f7d199 commit: e2e00e1f66e5dba2de1575b5782c052915b59c2a Author: Egor Martynov yandex ru> AuthorDate: Mon Apr 10 12:45:06 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 2 19:26:38 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e00e1f x11-wm/qtile: fix sandbox violations on wayland Closes: https://bugs.gentoo.org/904063 Signed-off-by: Egor Martynov yandex.ru> Closes: https://github.com/gentoo/gentoo/pull/30537 Signed-off-by: Sam James gentoo.org> x11-wm/qtile/qtile-0.21.0-r1.ebuild | 5 +++++ x11-wm/qtile/qtile-0.22.1-r1.ebuild | 5 +++++ x11-wm/qtile/qtile-0.22.1.ebuild | 5 +++++ x11-wm/qtile/qtile-9999.ebuild | 5 +++++ 4 files changed, 20 insertions(+) diff --git a/x11-wm/qtile/qtile-0.21.0-r1.ebuild b/x11-wm/qtile/qtile-0.21.0-r1.ebuild index 5e44902284db..b5911d3ce314 100644 --- a/x11-wm/qtile/qtile-0.21.0-r1.ebuild +++ b/x11-wm/qtile/qtile-0.21.0-r1.ebuild @@ -58,6 +58,11 @@ python_test() { epytest -p no:xdist || die "Tests failed with ${EPYTHON}" } +python_compile() { + export CFFI_TMPDIR=${T} + distutils-r1_python_compile +} + python_install_all() { local DOCS=( CHANGELOG README.rst ) distutils-r1_python_install_all diff --git a/x11-wm/qtile/qtile-0.22.1-r1.ebuild b/x11-wm/qtile/qtile-0.22.1-r1.ebuild index 865019a7d76b..8f096ebbbaa8 100644 --- a/x11-wm/qtile/qtile-0.22.1-r1.ebuild +++ b/x11-wm/qtile/qtile-0.22.1-r1.ebuild @@ -92,6 +92,11 @@ python_test() { epytest -p no:xdist --backend=x11 $(usev wayland '--backend=wayland') || die "Tests failed with ${EPYTHON}" } +python_compile() { + export CFFI_TMPDIR=${T} + distutils-r1_python_compile +} + python_install_all() { local DOCS=( CHANGELOG README.rst ) distutils-r1_python_install_all diff --git a/x11-wm/qtile/qtile-0.22.1.ebuild b/x11-wm/qtile/qtile-0.22.1.ebuild index a51a99123343..c3d5540283f9 100644 --- a/x11-wm/qtile/qtile-0.22.1.ebuild +++ b/x11-wm/qtile/qtile-0.22.1.ebuild @@ -64,6 +64,11 @@ python_test() { epytest -p no:xdist || die "Tests failed with ${EPYTHON}" } +python_compile() { + export CFFI_TMPDIR=${T} + distutils-r1_python_compile +} + python_install_all() { local DOCS=( CHANGELOG README.rst ) distutils-r1_python_install_all diff --git a/x11-wm/qtile/qtile-9999.ebuild b/x11-wm/qtile/qtile-9999.ebuild index 4133df21f1c7..db0c8d80ec74 100644 --- a/x11-wm/qtile/qtile-9999.ebuild +++ b/x11-wm/qtile/qtile-9999.ebuild @@ -89,6 +89,11 @@ python_test() { epytest -p no:xdist --backend=x11 $(usev wayland '--backend=wayland') || die "Tests failed with ${EPYTHON}" } +python_compile() { + export CFFI_TMPDIR=${T} + distutils-r1_python_compile +} + python_install_all() { local DOCS=( CHANGELOG README.rst ) distutils-r1_python_install_all