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 8B841138334 for ; Mon, 16 Dec 2019 10:15:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06835E087E; Mon, 16 Dec 2019 10:15:00 +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 DCF2DE087E for ; Mon, 16 Dec 2019 10:14:59 +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 0E92034D7F8 for ; Mon, 16 Dec 2019 10:14:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF25E986 for ; Mon, 16 Dec 2019 10:14:55 +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: <1576491284.5595bdf36e5ba9a604462564f483bba607bb5252.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/snowballstemmer/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild X-VCS-Directories: dev-python/snowballstemmer/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5595bdf36e5ba9a604462564f483bba607bb5252 X-VCS-Branch: master Date: Mon, 16 Dec 2019 10:14:55 +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: 733e5de5-3bc6-4b92-8504-02d5ffcb07da X-Archives-Hash: c1926d0572506f4c7f24190d08a7d3c6 commit: 5595bdf36e5ba9a604462564f483bba607bb5252 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 16 09:58:42 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 16 10:14:44 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5595bdf3 dev-python/snowballstemmer: Set DISTUTILS_USE_SETUPTOOLS, EAPI 7 Signed-off-by: Michał Górny gentoo.org> dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild b/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild index 4515f196493..c1cb67664e4 100644 --- a/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild +++ b/dev-python/snowballstemmer/snowballstemmer-1.2.1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 +DISTUTILS_USE_SETUPTOOLS=no PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 ) inherit distutils-r1