From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1178765-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 4A0DB13835A for <garchives@archives.gentoo.org>; Wed, 10 Jun 2020 17:39:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35979E096E; Wed, 10 Jun 2020 17:38:59 +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 F0323E096D for <gentoo-commits@lists.gentoo.org>; Wed, 10 Jun 2020 17:38:58 +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 AEEF534F20F for <gentoo-commits@lists.gentoo.org>; Wed, 10 Jun 2020 17:38:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9778D28F for <gentoo-commits@lists.gentoo.org>; Wed, 10 Jun 2020 17:38:54 +0000 (UTC) From: "Michał Górny" <mgorny@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, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1591810730.f24e442b7bdc7316c8973f28103be7c82cebd7f5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/unidecode/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/unidecode/unidecode-1.1.1.ebuild X-VCS-Directories: dev-python/unidecode/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f24e442b7bdc7316c8973f28103be7c82cebd7f5 X-VCS-Branch: master Date: Wed, 10 Jun 2020 17:38:54 +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: 664bfd7c-4ad1-4a60-ad3e-e5c1fd4f8bea X-Archives-Hash: 43b07e2fa44b8115f3d77040559082e3 commit: f24e442b7bdc7316c8973f28103be7c82cebd7f5 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Wed Jun 10 17:34:42 2020 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Wed Jun 10 17:38:50 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f24e442b dev-python/unidecode: Port to py3.9 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/unidecode/unidecode-1.1.1.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/dev-python/unidecode/unidecode-1.1.1.ebuild b/dev-python/unidecode/unidecode-1.1.1.ebuild index d64032f5db3..beafe7f03be 100644 --- a/dev-python/unidecode/unidecode-1.1.1.ebuild +++ b/dev-python/unidecode/unidecode-1.1.1.ebuild @@ -3,23 +3,20 @@ EAPI=7 -PYTHON_COMPAT=( pypy3 python3_{6,7,8} ) +PYTHON_COMPAT=( pypy3 python3_{6..9} ) PYTHON_REQ_USE="wide-unicode(+)" DISTUTILS_USE_SETUPTOOLS="rdepend" -MY_PN=Unidecode -MY_P=${MY_PN}-${PV} - inherit distutils-r1 +MY_P=Unidecode-${PV} DESCRIPTION="Module providing ASCII transliterations of Unicode text" HOMEPAGE="https://pypi.org/project/Unidecode/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +SRC_URI="mirror://pypi/${MY_P:0:1}/${PN^}/${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="GPL-2+" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 sparc x86" -S="${WORKDIR}/${MY_P}" - distutils_enable_tests setup.py