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 82583138334 for ; Sun, 4 Aug 2019 13:44:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6ACA2E088D; Sun, 4 Aug 2019 13:44:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 53DBDE0893 for ; Sun, 4 Aug 2019 13:44:27 +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 116CF34987F for ; Sun, 4 Aug 2019 13:44:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A7192A5 for ; Sun, 4 Aug 2019 13:44:23 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1564925404.5d55fb34b885403d9e8484ea56438e17a643f0b4.alexxy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scandir/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/scandir/scandir-1.10.0-r1.ebuild X-VCS-Directories: dev-python/scandir/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 5d55fb34b885403d9e8484ea56438e17a643f0b4 X-VCS-Branch: master Date: Sun, 4 Aug 2019 13:44:23 +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: 031c7ca3-4f92-41a0-bd2f-7f9bb62eb690 X-Archives-Hash: 6f7260efbc84c0f83b3d4ccc5334f2dc commit: 5d55fb34b885403d9e8484ea56438e17a643f0b4 Author: Alexey Shvetsov gentoo org> AuthorDate: Sun Aug 4 13:30:04 2019 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Sun Aug 4 13:30:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d55fb34 dev-python/scandir: Works with py3.7 Package-Manager: Portage-2.3.70, Repoman-2.3.16 Signed-off-by: Alexey Shvetsov gentoo.org> dev-python/scandir/scandir-1.10.0-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-python/scandir/scandir-1.10.0-r1.ebuild b/dev-python/scandir/scandir-1.10.0-r1.ebuild new file mode 100644 index 00000000000..7de4dbb9c46 --- /dev/null +++ b/dev-python/scandir/scandir-1.10.0-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy ) + +inherit distutils-r1 + +DESCRIPTION="A better directory iterator and faster os.walk()" +HOMEPAGE="https://github.com/benhoyt/scandir" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + ${EPYTHON} test/run_tests.py -v || die "tests failed under ${EPYTHON}" +}