From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 011311384B4 for ; Tue, 29 Dec 2015 13:59:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 775FFE07E1; Tue, 29 Dec 2015 13:59:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C7A1E07E1 for ; Tue, 29 Dec 2015 13:59:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B2850340545 for ; Tue, 29 Dec 2015 13:58:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D071FC86 for ; Tue, 29 Dec 2015 13:58:55 +0000 (UTC) From: "Ian Delaney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Delaney" Message-ID: <1451397516.4646301576460d57f23c5f76c59b77a5319c8510.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-classes/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-classes/Manifest dev-python/jaraco-classes/jaraco-classes-1.2.ebuild dev-python/jaraco-classes/metadata.xml X-VCS-Directories: dev-python/jaraco-classes/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 4646301576460d57f23c5f76c59b77a5319c8510 X-VCS-Branch: master Date: Tue, 29 Dec 2015 13:58:55 +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: 0caff88f-7a73-4caa-997b-8b952f970daf X-Archives-Hash: 52164efde7b9824a30bd39f13d3e1599 commit: 4646301576460d57f23c5f76c59b77a5319c8510 Author: Louis Sautier gmail com> AuthorDate: Tue Dec 29 12:55:17 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Tue Dec 29 13:58:36 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46463015 dev-python/jaraco-classes: needed as a new dep to dev-python/irc Package-Manager: portage-2.2.26 dev-python/jaraco-classes/Manifest | 1 + .../jaraco-classes/jaraco-classes-1.2.ebuild | 43 ++++++++++++++++++++++ dev-python/jaraco-classes/metadata.xml | 14 +++++++ 3 files changed, 58 insertions(+) diff --git a/dev-python/jaraco-classes/Manifest b/dev-python/jaraco-classes/Manifest new file mode 100644 index 0000000..740eaa4 --- /dev/null +++ b/dev-python/jaraco-classes/Manifest @@ -0,0 +1 @@ +DIST jaraco.classes-1.2.zip 7366 SHA256 656ae3efdf65405fdafff2efd913ef7aece61701271ebfe145d8c1a3b5bf5777 SHA512 7f4ec185c55fda7604146b0891de84e7ed433f1ea52f0b381c91ee36be6ae8ee44ebcb709ecd453481a28db99694f6807cd310aa64de3fddbfe495449772b08b WHIRLPOOL c44131060a1fc39aba5000751e3e9d6ea4a747e4e9d2a8bbeb79402adccc13770649705eb032b63b4ed336330dc7a22dc1dbd2d358162be0285e2a9ca4349ca9 diff --git a/dev-python/jaraco-classes/jaraco-classes-1.2.ebuild b/dev-python/jaraco-classes/jaraco-classes-1.2.ebuild new file mode 100644 index 0000000..41336f1 --- /dev/null +++ b/dev-python/jaraco-classes/jaraco-classes-1.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 + +MY_PN="${PN/-/.}" +DESCRIPTION="Classes used by other projects by developer jaraco" +HOMEPAGE="https://bitbucket.org/jaraco/jaraco.classes" +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.zip" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + app-arch/unzip + dev-python/hgtools[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + ) +" + +S="${WORKDIR}/${MY_PN}-${PV}" + +python_prepare_all() { + if use test && has_version "${CATEGORY}/${PN}"; then + die "Ensure $PN is not already installed or the test suite will fail" + fi + distutils-r1_python_prepare_all +} + +python_test() { + PYTHONPATH=. py.test || die "tests failed with ${EPYTHON}" +} diff --git a/dev-python/jaraco-classes/metadata.xml b/dev-python/jaraco-classes/metadata.xml new file mode 100644 index 0000000..93370f5 --- /dev/null +++ b/dev-python/jaraco-classes/metadata.xml @@ -0,0 +1,14 @@ + + + + proxy-maintainers + + sautier.louis@gmail.com + Louis Sautier + Proxied maintainer; set to assignee in all bugs + + + jaraco.classes + jaraco/jaraco.classes + +