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 CB2F413835A for ; Sat, 30 May 2020 07:16:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8B1DE08D4; Sat, 30 May 2020 07:16:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BF1DDE08D4 for ; Sat, 30 May 2020 07:16:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B361934E3F9 for ; Sat, 30 May 2020 07:16:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A2E1270 for ; Sat, 30 May 2020 07:16:47 +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: <1590822943.7c4303b4f3304940bc3ccb58ad4bd0ea80deef20.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/smart-live-rebuild/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6.ebuild app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild X-VCS-Directories: app-portage/smart-live-rebuild/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7c4303b4f3304940bc3ccb58ad4bd0ea80deef20 X-VCS-Branch: master Date: Sat, 30 May 2020 07:16:47 +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: b3911437-f1ec-4185-9a08-c35b2e49e78d X-Archives-Hash: d70c0a9d488182c1b7a59b6b973ceb94 commit: 7c4303b4f3304940bc3ccb58ad4bd0ea80deef20 Author: Michał Górny gentoo org> AuthorDate: Sat May 30 07:14:36 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 30 07:15:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c4303b4 app-portage/smart-live-rebuild: Set DISTUTILS_USE_SETUPTOOLS Signed-off-by: Michał Górny gentoo.org> app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6.ebuild | 2 ++ app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6.ebuild b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6.ebuild index f41f6990cae..0520c1b1ae4 100644 --- a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6.ebuild +++ b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.6.ebuild @@ -2,6 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 + +DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild b/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild index 5a39a3646b4..1f974965eed 100644 --- a/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild +++ b/app-portage/smart-live-rebuild/smart-live-rebuild-9999.ebuild @@ -2,6 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 + +DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( python3_{6..9} ) EGIT_REPO_URI="https://github.com/mgorny/${PN}.git"