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 BEF6D138332 for ; Fri, 2 Mar 2018 06:27:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87857E09E1; Fri, 2 Mar 2018 06:27:35 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 5E1F4E09A2 for ; Fri, 2 Mar 2018 06:27:35 +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 F0DB5335C3E for ; Fri, 2 Mar 2018 06:27:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4773D233 for ; Fri, 2 Mar 2018 06:27:32 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1519970774.6161f66ab37d1e9d97decb4ea9d3082940321a5d.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/setools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/setools/setools-4.1.1.ebuild app-admin/setools/setools-9999.ebuild X-VCS-Directories: app-admin/setools/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 6161f66ab37d1e9d97decb4ea9d3082940321a5d X-VCS-Branch: master Date: Fri, 2 Mar 2018 06:27:32 +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: 57f97a9c-30c9-4455-87e5-97d2695a824e X-Archives-Hash: e02670449dc38aa67702f34fe5ac6c1a commit: 6161f66ab37d1e9d97decb4ea9d3082940321a5d Author: Jason Zaman gentoo org> AuthorDate: Thu Mar 1 14:54:28 2018 +0000 Commit: Jason Zaman gentoo org> CommitDate: Fri Mar 2 06:06:14 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6161f66a app-admin/setools: add python3_6 compat Package-Manager: Portage-2.3.19, Repoman-2.3.6 app-admin/setools/setools-4.1.1.ebuild | 4 ++-- app-admin/setools/setools-9999.ebuild | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app-admin/setools/setools-4.1.1.ebuild b/app-admin/setools/setools-4.1.1.ebuild index 28df40b3ee5..f9967bce90f 100644 --- a/app-admin/setools/setools-4.1.1.ebuild +++ b/app-admin/setools/setools-4.1.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" -PYTHON_COMPAT=( python2_7 python3_4 python3_5 ) +PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 ) inherit distutils-r1 diff --git a/app-admin/setools/setools-9999.ebuild b/app-admin/setools/setools-9999.ebuild index f1e79d0d936..bc6d48e45d5 100644 --- a/app-admin/setools/setools-9999.ebuild +++ b/app-admin/setools/setools-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="6" -PYTHON_COMPAT=( python2_7 python3_4 python3_5 ) +PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 ) inherit distutils-r1 @@ -39,12 +39,13 @@ DEPEND="${RDEPEND} test? ( python_targets_python2_7? ( dev-python/mock[${PYTHON_USEDEP}] ) dev-python/tox[${PYTHON_USEDEP}] + sys-apps/checkpolicy )" python_prepare_all() { sed -i "s/'-Werror', //" "${S}"/setup.py || die "failed to remove Werror" - use X || local PATCHES=( "${FILESDIR}"/setools-4.1.0-remove-gui.patch ) + use X || local PATCHES=( "${FILESDIR}"/setools-4.1.1-remove-gui.patch ) distutils-r1_python_prepare_all }