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 688AE138330 for ; Sun, 4 Sep 2016 14:01:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 393B121C054; Sun, 4 Sep 2016 14:00:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CDF4721C054 for ; Sun, 4 Sep 2016 14:00:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4C10340942 for ; Sun, 4 Sep 2016 14:00:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62E4E246F for ; Sun, 4 Sep 2016 14:00:53 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1472997638.4fd31462a3f27ba996a1cdd3b3827af0a965d0e3.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pathlib2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pathlib2/Manifest dev-python/pathlib2/metadata.xml dev-python/pathlib2/pathlib2-2.1.0.ebuild X-VCS-Directories: dev-python/pathlib2/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 4fd31462a3f27ba996a1cdd3b3827af0a965d0e3 X-VCS-Branch: master Date: Sun, 4 Sep 2016 14:00:53 +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: bbbb30b9-75d9-4c80-b91f-d8b9aabefa50 X-Archives-Hash: c1adc470960221677313981abb5edb7e commit: 4fd31462a3f27ba996a1cdd3b3827af0a965d0e3 Author: Manuel Rüger gentoo org> AuthorDate: Sun Sep 4 14:00:38 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sun Sep 4 14:00:38 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd31462 dev-python/pathlib2: Initial version Package-Manager: portage-2.3.0 dev-python/pathlib2/Manifest | 1 + dev-python/pathlib2/metadata.xml | 11 +++++++++++ dev-python/pathlib2/pathlib2-2.1.0.ebuild | 25 +++++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-python/pathlib2/Manifest b/dev-python/pathlib2/Manifest new file mode 100644 index 00000000..d31e413 --- /dev/null +++ b/dev-python/pathlib2/Manifest @@ -0,0 +1 @@ +DIST pathlib2-2.1.0.tar.gz 30390 SHA256 deb3a960c1d55868dfbcac98432358b92ba89d95029cddd4040db1f27405055c SHA512 5dad54d4bf7a37a2c425afeca030a23d802a8a450186292f3d80aa9ee5c2985701871a0386a2f58e2b05b4bbfd7734a238d0a73625c5839237e4f3984088a8b1 WHIRLPOOL 61507dca96da2ed128fd3f8c0f5afe2c993dc56da3de294db7600aa38016a97891be2e9aede2f067cd52040939bc14ed139553004d4c98df72d32a3516719c73 diff --git a/dev-python/pathlib2/metadata.xml b/dev-python/pathlib2/metadata.xml new file mode 100644 index 00000000..89ea9d2 --- /dev/null +++ b/dev-python/pathlib2/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + pathlib2 + + diff --git a/dev-python/pathlib2/pathlib2-2.1.0.ebuild b/dev-python/pathlib2/pathlib2-2.1.0.ebuild new file mode 100644 index 00000000..693e8c3 --- /dev/null +++ b/dev-python/pathlib2/pathlib2-2.1.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Fork of pathlib aiming to support the full stdlib Python API" +HOMEPAGE="https://github.com/mcmtroffaes/pathlib2" +SRC_URI="mirror://pypi/p/pathlib2/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +python_test() { + ${EPYTHON} test_pathlib2.py || die +}