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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 988EA1382C5 for ; Tue, 24 Apr 2018 16:09:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A11F8E07C7; Tue, 24 Apr 2018 16:09:11 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 77A4CE07C7 for ; Tue, 24 Apr 2018 16:09:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B1DCD335C30 for ; Tue, 24 Apr 2018 16:09:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42654298 for ; Tue, 24 Apr 2018 16:09:08 +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: <1524586138.d7c2a7c30cca0da599fc17eb78653dabc94b5732.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyxattr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyxattr/pyxattr-0.6.0-r1.ebuild X-VCS-Directories: dev-python/pyxattr/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d7c2a7c30cca0da599fc17eb78653dabc94b5732 X-VCS-Branch: master Date: Tue, 24 Apr 2018 16:09:08 +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-Archives-Salt: 2931ad32-3baa-466f-8fad-94faf8449031 X-Archives-Hash: 280a6f9d6b45a04b4ae7f8c764389e44 commit: d7c2a7c30cca0da599fc17eb78653dabc94b5732 Author: Michał Górny gentoo org> AuthorDate: Tue Apr 24 15:59:56 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Apr 24 16:08:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c2a7c3 dev-python/pyxattr: Ignore selinux xattrs by default Bug: https://bugs.gentoo.org/503946 dev-python/pyxattr/pyxattr-0.6.0-r1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/pyxattr/pyxattr-0.6.0-r1.ebuild b/dev-python/pyxattr/pyxattr-0.6.0-r1.ebuild index 8b0b7315eca..0f47e843d3e 100644 --- a/dev-python/pyxattr/pyxattr-0.6.0-r1.ebuild +++ b/dev-python/pyxattr/pyxattr-0.6.0-r1.ebuild @@ -43,6 +43,8 @@ src_test() { # Perform the tests in /var/tmp; that location is more likely # to have xattr support than /tmp which is often tmpfs. local -x TEST_DIR=/var/tmp + # Ignore selinux attributes by default, bug #503946. + local -x TEST_IGNORE_XATTRS="security.selinux" einfo 'Please note that the tests fail if xattrs are not supported' einfo 'by the filesystem used for /var/tmp.'