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 48E7D1388C1 for ; Wed, 30 Dec 2015 02:33:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A24FE0881; Wed, 30 Dec 2015 02:32:58 +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 F01A5E0881 for ; Wed, 30 Dec 2015 02:32:57 +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 CF09833D3CD for ; Wed, 30 Dec 2015 02:32:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3ADC13A for ; Wed, 30 Dec 2015 02:32:52 +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: <1451442760.184f7d4400bae7ef56f1262daa00dc9e11f2a1d6.idella4@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-functools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jaraco-functools/Manifest dev-python/jaraco-functools/jaraco-functools-1.8.1.ebuild dev-python/jaraco-functools/metadata.xml X-VCS-Directories: dev-python/jaraco-functools/ X-VCS-Committer: idella4 X-VCS-Committer-Name: Ian Delaney X-VCS-Revision: 184f7d4400bae7ef56f1262daa00dc9e11f2a1d6 X-VCS-Branch: master Date: Wed, 30 Dec 2015 02:32:52 +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: 291fd3f8-78f0-4ce2-af4b-faba13452bc3 X-Archives-Hash: e70e28ef929e4299dfb8f7d0f7580b56 commit: 184f7d4400bae7ef56f1262daa00dc9e11f2a1d6 Author: Louis Sautier gmail com> AuthorDate: Wed Dec 30 00:06:58 2015 +0000 Commit: Ian Delaney gentoo org> CommitDate: Wed Dec 30 02:32:40 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=184f7d44 dev-python/jaraco-functools: needed as a new dep to dev-python/irc Package-Manager: portage-2.2.26 dev-python/jaraco-functools/Manifest | 1 + .../jaraco-functools/jaraco-functools-1.8.1.ebuild | 46 ++++++++++++++++++++++ dev-python/jaraco-functools/metadata.xml | 14 +++++++ 3 files changed, 61 insertions(+) diff --git a/dev-python/jaraco-functools/Manifest b/dev-python/jaraco-functools/Manifest new file mode 100644 index 0000000..2bef306 --- /dev/null +++ b/dev-python/jaraco-functools/Manifest @@ -0,0 +1 @@ +DIST jaraco.functools-1.8.1.tar.gz 6125 SHA256 766cd9caed0c18dfbf744dcd05d1f171f03e64ab8f7363d5b2521ba200383c5a SHA512 d67795340238bd646bea450e8bb37fb64bca66a41a4b8f385f4a986b880578edfa2dad23b820a1a9cce7460dc530a2de2a219362e9cd0ced851040e86fb70f21 WHIRLPOOL bd050b7daa52f2f5043ca2209562472b96d9ec5d417edf96bf686eb0f60a4bde6b69890557140f7f0b278e8d612c702b01a5b72ccae5b894b3646d37582a1da5 diff --git a/dev-python/jaraco-functools/jaraco-functools-1.8.1.ebuild b/dev-python/jaraco-functools/jaraco-functools-1.8.1.ebuild new file mode 100644 index 0000000..9914b72 --- /dev/null +++ b/dev-python/jaraco-functools/jaraco-functools-1.8.1.ebuild @@ -0,0 +1,46 @@ +# 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 functions used by other projects by developer jaraco" +HOMEPAGE="https://github.com/jaraco/jaraco.functools" +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +# https://github.com/jaraco/jaraco.functools/issues/3 +RESTRICT="test" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/backports-functools-lru-cache[${PYTHON_USEDEP}]' python2_7) +" +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-functools/metadata.xml b/dev-python/jaraco-functools/metadata.xml new file mode 100644 index 0000000..811c8d1 --- /dev/null +++ b/dev-python/jaraco-functools/metadata.xml @@ -0,0 +1,14 @@ + + + + proxy-maintainers + + sautier.louis@gmail.com + Louis Sautier + Proxied maintainer; set to assignee in all bugs + + + jaraco.functools + jaraco/jaraco.functools + +