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 C1D361388C1 for ; Tue, 29 Dec 2015 15:16:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54ECDE086D; Tue, 29 Dec 2015 15:16:28 +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 BC78DE086B for ; Tue, 29 Dec 2015 15:16:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 58B5E3406DD for ; Tue, 29 Dec 2015 15:16:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B38AC86 for ; Tue, 29 Dec 2015 15:16:22 +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: <1451402167.06337640cc3c5f53ab40f568e29600fdfd7abfd1.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-logging/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-logging/Manifest dev-python/jaraco-logging/jaraco-logging-1.3.1.ebuild dev-python/jaraco-logging/metadata.xml X-VCS-Directories: dev-python/jaraco-logging/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 06337640cc3c5f53ab40f568e29600fdfd7abfd1 X-VCS-Branch: master Date: Tue, 29 Dec 2015 15:16:22 +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: 5849a8b0-41b3-489f-ba9f-1390d0a41e1a X-Archives-Hash: cf028ff02ee597674c65c88cd5a548b4 commit: 06337640cc3c5f53ab40f568e29600fdfd7abfd1 Author: Louis Sautier gmail com> AuthorDate: Tue Dec 29 14:49:40 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Tue Dec 29 15:16:07 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06337640 dev-python/jaraco-logging: needed as a new dep to dev-python/irc Package-Manager: portage-2.2.26 dev-python/jaraco-logging/Manifest | 1 + .../jaraco-logging/jaraco-logging-1.3.1.ebuild | 44 ++++++++++++++++++++++ dev-python/jaraco-logging/metadata.xml | 14 +++++++ 3 files changed, 59 insertions(+) diff --git a/dev-python/jaraco-logging/Manifest b/dev-python/jaraco-logging/Manifest new file mode 100644 index 0000000..8fde3b1 --- /dev/null +++ b/dev-python/jaraco-logging/Manifest @@ -0,0 +1 @@ +DIST jaraco.logging-1.3.1.tar.gz 4589 SHA256 e80e43a7b0d94bda2faacc1b996d5cc8bc6dcf20205048d18f4889f35e956580 SHA512 aaa2b29551a13358887e0747acb47ca2a6611ce1bfb08259bc70c7908929c4d2c45eefd7738e808b7b2404d723425efd69f9cb9601e0fb0c08f611bcf744ceae WHIRLPOOL 150101a7fa0b50a0130802638bd73124543c1836c27a96deb21be4eb6966028d58e4cabc6513a7149d08273a728ac1e46a27f78b6a139e304b16f14d2227abf3 diff --git a/dev-python/jaraco-logging/jaraco-logging-1.3.1.ebuild b/dev-python/jaraco-logging/jaraco-logging-1.3.1.ebuild new file mode 100644 index 0000000..90846bd --- /dev/null +++ b/dev-python/jaraco-logging/jaraco-logging-1.3.1.ebuild @@ -0,0 +1,44 @@ +# 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="Additional facilities to supplement Python's stdlib logging module" +HOMEPAGE="https://github.com/jaraco/jaraco.logging" +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}] + dev-python/tempora[${PYTHON_USEDEP}] +" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + >=dev-python/pytest-2.8[${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-logging/metadata.xml b/dev-python/jaraco-logging/metadata.xml new file mode 100644 index 0000000..3c58c00 --- /dev/null +++ b/dev-python/jaraco-logging/metadata.xml @@ -0,0 +1,14 @@ + + + + proxy-maintainers + + sautier.louis@gmail.com + Louis Sautier + Proxied maintainer; set to assignee in all bugs + + + jaraco.logging + jaraco/jaraco.logging + +