From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1159272-garchives=archives.gentoo.org@lists.gentoo.org> 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 120BD138351 for <garchives@archives.gentoo.org>; Sun, 5 Apr 2020 19:47:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58F4BE0CB4; Sun, 5 Apr 2020 19:47:41 +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 44C48E0CA1 for <gentoo-commits@lists.gentoo.org>; Sun, 5 Apr 2020 19:47:41 +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 4D08134EF61 for <gentoo-commits@lists.gentoo.org>; Sun, 5 Apr 2020 19:47:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3878D1C1 for <gentoo-commits@lists.gentoo.org>; Sun, 5 Apr 2020 19:47:36 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1586116035.19744f19c5d667caa692882f171f64fb8fdeb9fb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/stem/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/stem/stem-1.8.0-r1.ebuild net-libs/stem/stem-1.8.0.ebuild X-VCS-Directories: net-libs/stem/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 19744f19c5d667caa692882f171f64fb8fdeb9fb X-VCS-Branch: master Date: Sun, 5 Apr 2020 19:47:36 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6566aedb-9d3b-4163-9374-77f182ac9568 X-Archives-Hash: 82101da9cdd733298918d88c54c924af commit: 19744f19c5d667caa692882f171f64fb8fdeb9fb Author: Jeffrey Lin <jeffrey <AT> icurse <DOT> nl> AuthorDate: Sun Feb 23 03:37:51 2020 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Apr 5 19:47:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19744f19 net-libs/stem: EAPI 7; add pypy3 support Signed-off-by: Jeffrey Lin <jeffrey <AT> icurse.nl> Closes: https://github.com/gentoo/gentoo/pull/14745 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> net-libs/stem/{stem-1.8.0.ebuild => stem-1.8.0-r1.ebuild} | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/net-libs/stem/stem-1.8.0.ebuild b/net-libs/stem/stem-1.8.0-r1.ebuild similarity index 93% rename from net-libs/stem/stem-1.8.0.ebuild rename to net-libs/stem/stem-1.8.0-r1.ebuild index 95d26e15939..d24b6703b46 100644 --- a/net-libs/stem/stem-1.8.0.ebuild +++ b/net-libs/stem/stem-1.8.0-r1.ebuild @@ -1,10 +1,11 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -PYTHON_COMPAT=(python{3_6,3_7}) +EAPI=7 +PYTHON_COMPAT=(python3_{6,7,8} pypy3) +DISTUTILS_USE_SETUPTOOLS=no -inherit vcs-snapshot distutils-r1 +inherit distutils-r1 DESCRIPTION="Stem is a Python controller library for Tor" HOMEPAGE="https://stem.torproject.org"