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 936DE138334 for ; Wed, 20 Jun 2018 23:03:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C11BE0B4E; Wed, 20 Jun 2018 23:03:33 +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 4FCABE0B4E for ; Wed, 20 Jun 2018 23:03:33 +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 AFF8B335C7E for ; Wed, 20 Jun 2018 23:03:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91E652AD for ; Wed, 20 Jun 2018 23:03:29 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1529535751.8ca8a363b3c46636139c95b21df8d8ad3e138893.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/more-itertools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/more-itertools/Manifest dev-python/more-itertools/more-itertools-4.2.0.ebuild X-VCS-Directories: dev-python/more-itertools/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 8ca8a363b3c46636139c95b21df8d8ad3e138893 X-VCS-Branch: master Date: Wed, 20 Jun 2018 23:03:29 +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-Archives-Salt: 1c4c1654-67e0-45d6-9529-ea8ece35b76c X-Archives-Hash: 5a4dbfa54ef67f592ab8a3cef5c6770e commit: 8ca8a363b3c46636139c95b21df8d8ad3e138893 Author: Louis Sautier gentoo org> AuthorDate: Wed Jun 20 23:00:25 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Wed Jun 20 23:02:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca8a363 dev-python/more-itertools: bump to 4.2.0 Use pytest instead of nose because the latter fails. Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/more-itertools/Manifest | 1 + .../more-itertools/more-itertools-4.2.0.ebuild | 39 ++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/dev-python/more-itertools/Manifest b/dev-python/more-itertools/Manifest index 25dd56eedc8..1cf128358df 100644 --- a/dev-python/more-itertools/Manifest +++ b/dev-python/more-itertools/Manifest @@ -1 +1,2 @@ DIST more-itertools-3.0.0.tar.gz 37622 BLAKE2B dd1806f4359406ac0a57a8eefe8d6c31033177e3f1b4fd297dfcdb525df6bd5725ff16f25abb1957dcb1cacb21bf1d037a3c9def9e9469904efbe2fd336cf5b4 SHA512 575de991b6337e6416489d92b41201536397d84ff41030a2cf09ea57cc994e03dcb4dd19eda321243ceafd49c11271da43a4c4ed5a9261cf771f0b7f8e40345c +DIST more-itertools-4.2.0.tar.gz 56871 BLAKE2B 48cdba3eebea94483c5cfd9530d4bd2cacd02e893b87482a01ff1fdf10336f3c2a40d32fbb935d38320c9c47a1fd1942a48ea12ff07ae56793ecc5870fef2452 SHA512 7e205a575fb1d17ed3be9225c5c60139db41cc4b866f6d6732c955536b1d606bb7ccd92ad77e41159965abbddec3a85761d3649c28f06d52afa8476160d70e77 diff --git a/dev-python/more-itertools/more-itertools-4.2.0.ebuild b/dev-python/more-itertools/more-itertools-4.2.0.ebuild new file mode 100644 index 00000000000..75bf1681331 --- /dev/null +++ b/dev-python/more-itertools/more-itertools-4.2.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} ) + +inherit distutils-r1 + +DESCRIPTION="More routines for operating on iterables, beyond itertools" +HOMEPAGE="https://pypi.org/project/more-itertools/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86" +IUSE="doc test" + +RDEPEND="