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 CCB91138334 for ; Sun, 29 Jul 2018 15:40:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C342AE08DA; Sun, 29 Jul 2018 15:40:30 +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 79334E08DA for ; Sun, 29 Jul 2018 15:40:30 +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 BB5AC335CA9 for ; Sun, 29 Jul 2018 15:40:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCE2D38B for ; Sun, 29 Jul 2018 15:40:25 +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: <1532878810.95e249b0ffdd12a5c8818e3f5e7c583ccfd04158.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pysendfile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild X-VCS-Directories: dev-python/pysendfile/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 95e249b0ffdd12a5c8818e3f5e7c583ccfd04158 X-VCS-Branch: master Date: Sun, 29 Jul 2018 15:40:25 +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: 471a139b-0164-4541-abdd-a2a59c120c59 X-Archives-Hash: a6b2620b562d8c23aaf3dc4a517a3430 commit: 95e249b0ffdd12a5c8818e3f5e7c583ccfd04158 Author: Louis Sautier gentoo org> AuthorDate: Sun Jul 29 15:34:49 2018 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sun Jul 29 15:40:10 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95e249b0 dev-python/pysendfile: add tests, Python 3.7, PyPy3, EAPI=7 Package-Manager: Portage-2.3.43, Repoman-2.3.10 dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild new file mode 100644 index 00000000000..6add938cfba --- /dev/null +++ b/dev-python/pysendfile/pysendfile-2.0.1-r1.ebuild @@ -0,0 +1,23 @@ +# 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,7}} ) + +inherit distutils-r1 + +DESCRIPTION="A python interface to the sendfile(2) system call" +HOMEPAGE="https://github.com/giampaolo/pysendfile" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +KEYWORDS="~amd64 ~arm ~ia64 ~ppc64 ~sparc ~x86" +IUSE="" +LICENSE="MIT" +SLOT="0" + +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${EPYTHON}" test/test_sendfile.py || die "tests failed with ${EPYTHON}" +}