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 124791382C5 for ; Sat, 16 May 2020 01:00:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A170E092C; Sat, 16 May 2020 01:00:36 +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 08F20E092C for ; Sat, 16 May 2020 01:00:36 +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 AD94D34F162 for ; Sat, 16 May 2020 01:00:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BC9E246 for ; Sat, 16 May 2020 01:00:04 +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: <1589590346.91087861b79d4a7a68587f00057ffec6c671f12d.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/astunparse/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/astunparse/Manifest dev-python/astunparse/astunparse-1.6.3.ebuild X-VCS-Directories: dev-python/astunparse/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: 91087861b79d4a7a68587f00057ffec6c671f12d X-VCS-Branch: master Date: Sat, 16 May 2020 01:00:04 +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: 2839ea18-4b85-419c-a44a-d0542faae6df X-Archives-Hash: 4589fedce8b7e4b9ae298256fabb71cd commit: 91087861b79d4a7a68587f00057ffec6c671f12d Author: Jason Zaman gentoo org> AuthorDate: Fri May 15 01:53:29 2020 +0000 Commit: Jason Zaman gentoo org> CommitDate: Sat May 16 00:52:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91087861 dev-python/astunparse: bump 1.6.3 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Jason Zaman gentoo.org> dev-python/astunparse/Manifest | 1 + dev-python/astunparse/astunparse-1.6.3.ebuild | 30 +++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/dev-python/astunparse/Manifest b/dev-python/astunparse/Manifest index ad72dea5442..2d28afb76e9 100644 --- a/dev-python/astunparse/Manifest +++ b/dev-python/astunparse/Manifest @@ -1 +1,2 @@ DIST astunparse-1.6.2.tar.gz 16339 BLAKE2B d35d63b8313718c1d873d55b7da824465be9b4bc9e486ff82dac7db2df5185f8a59bfb283844d7108927b04ee02879fe921c87f9da8bd87c157341e6022b40cc SHA512 1e344354481dab7345d8790791e15e2ce733b8985839972a1771b97adebbfc2b42c8fb258ea36f245baed553d3b8e5007872d6559ebcc5ef1eb6f6c6a5d66c81 +DIST astunparse-1.6.3.tar.gz 18290 BLAKE2B d7e6fa3ba58c6e112eb84720832890f4515b1c4ed420587565cdff37da893c07eefd0b9eb00795a3eb08bf56834d65150298a6be65e524b0c267c38e6f9c20d1 SHA512 12e99b32524e551494d3053a57aeb646bca8a96a9aa17b0737e6dace6c11874e2e7633d82197cacc0b55622bea637030344ab45c8db57ef244bd63663799d2e9 diff --git a/dev-python/astunparse/astunparse-1.6.3.ebuild b/dev-python/astunparse/astunparse-1.6.3.ebuild new file mode 100644 index 00000000000..2fb67c4622f --- /dev/null +++ b/dev-python/astunparse/astunparse-1.6.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="Astun parser for python" +HOMEPAGE="https://github.com/simonpercivall/astunparse" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-python/six-1.6.1[${PYTHON_USEDEP}] + >=dev-python/wheel-0.23.0[${PYTHON_USEDEP}] +" +PATCHES=( + "${FILESDIR}/astunparse-1.6.2-tests.patch" +) + +distutils_enable_tests setup.py + +python_install_all() { + distutils-r1_python_install_all + dodoc *.rst +}