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 10883138350 for ; Wed, 4 Mar 2020 20:51:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 461D1E0DE0; Wed, 4 Mar 2020 20:51:41 +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 24D7EE0DE0 for ; Wed, 4 Mar 2020 20:51:41 +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 47B6234F496 for ; Wed, 4 Mar 2020 20:51:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E61E10B for ; Wed, 4 Mar 2020 20:51:37 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1583355088.b98ba377f413a96a2632dce3023d52df4b04546d.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ptyprocess/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ptyprocess/Manifest dev-python/ptyprocess/ptyprocess-0.6.0.ebuild X-VCS-Directories: dev-python/ptyprocess/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: b98ba377f413a96a2632dce3023d52df4b04546d X-VCS-Branch: master Date: Wed, 4 Mar 2020 20:51:37 +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: 88b7d312-2d85-4d34-89ef-8eda3c6a156d X-Archives-Hash: 3a70906f4d81beeba78bd71b5f724b0d commit: b98ba377f413a96a2632dce3023d52df4b04546d Author: Sebastian Pipping gentoo org> AuthorDate: Wed Mar 4 20:48:52 2020 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Mar 4 20:51:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b98ba377 dev-python/ptyprocess: 0.6.0 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-2.3.89, Repoman-2.3.20 dev-python/ptyprocess/Manifest | 1 + dev-python/ptyprocess/ptyprocess-0.6.0.ebuild | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/dev-python/ptyprocess/Manifest b/dev-python/ptyprocess/Manifest index 606dfdf5456..76c33171bd1 100644 --- a/dev-python/ptyprocess/Manifest +++ b/dev-python/ptyprocess/Manifest @@ -1,2 +1,3 @@ DIST ptyprocess-0.5.1.tar.gz 68474 BLAKE2B 70dc7b33fecbbce753dad3363b99b0f6e3433a8e0c9c6bd97c6c9537b071266e5a24fd80e64b5dff804706449a40b810fa5e058e159862b112b89755a3577c1d SHA512 9e7481e8e3facde73086ef0728a57516a15b6bc2a5fb6bf6d6f892c396c9376d9d6334ee37737f3469929c4086d5678a2c5deaf44d70589d41644a98f2239dad DIST ptyprocess-0.5.2.tar.gz 69297 BLAKE2B 5b473d0549d18d17f27ba6ff89543b66b2a6781a73c849ab1e2225b73bc3485ae36ecbf50a660bfc0abcad472062502a484de55a9ea206dcf63724c2dd765ce9 SHA512 cb4e70855d388a6ff691e2a244c072a5a50cf39cdf727e3a4218817bf5ac722c4b49f0dbfd80204259998eba137492690759b8908bfea925842b9f7fc83ee553 +DIST ptyprocess-0.6.0.tar.gz 70115 BLAKE2B 02499e560c4df2f852d0951a9acfcb88a2bfe659592ead0304bb6a240e831fb093dd40a457714a8a91d1af70b5364b7af91d2c14c956d8a84d3eeec3eb2a9edf SHA512 b34b6bca977f09d1443b210e338e1300e12d6ef35857f9543b3a116ef3b500ad4844357a7a283321756f886af41bddb1f02b27bf200ef1e82a96fd9e431bed86 diff --git a/dev-python/ptyprocess/ptyprocess-0.6.0.ebuild b/dev-python/ptyprocess/ptyprocess-0.6.0.ebuild new file mode 100644 index 00000000000..d6bc8c208db --- /dev/null +++ b/dev-python/ptyprocess/ptyprocess-0.6.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=no +PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Run a subprocess in a pseudo terminal" +HOMEPAGE="https://github.com/pexpect/ptyprocess" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_tests pytest