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 7D5231381F1 for ; Thu, 22 Feb 2018 19:59:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9209EE092E; Thu, 22 Feb 2018 19:59:20 +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 6B8A2E0907 for ; Thu, 22 Feb 2018 19:59:20 +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 8777B335C4F for ; Thu, 22 Feb 2018 19:59:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC75E78 for ; Thu, 22 Feb 2018 19:59:17 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1519329531.af1e35c79f70d55b2ab9a174bfbb0afbb85227f3.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/decorator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/decorator/Manifest dev-python/decorator/decorator-4.2.1.ebuild X-VCS-Directories: dev-python/decorator/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: af1e35c79f70d55b2ab9a174bfbb0afbb85227f3 X-VCS-Branch: master Date: Thu, 22 Feb 2018 19:59:17 +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: 09062239-1a96-4181-9e60-4b8040c5e4f6 X-Archives-Hash: 422e239bfa195b775a4df130a95c069c commit: af1e35c79f70d55b2ab9a174bfbb0afbb85227f3 Author: Matthew Thode gentoo org> AuthorDate: Thu Feb 22 18:54:46 2018 +0000 Commit: Matt Thode gentoo org> CommitDate: Thu Feb 22 19:58:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af1e35c7 dev-python/decorator: 4.2.1 bup Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-python/decorator/Manifest | 1 + dev-python/decorator/decorator-4.2.1.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-python/decorator/Manifest b/dev-python/decorator/Manifest index 51741f81069..c3683cd8a91 100644 --- a/dev-python/decorator/Manifest +++ b/dev-python/decorator/Manifest @@ -1 +1,2 @@ DIST decorator-4.1.2.tar.gz 32325 BLAKE2B 19754506bf18f03748d61fe3cf85e13e91f5a7b4b3550cf087b1c9506fa2d10a4fb6c32914f7c2078a74ac34f5ffaf0edf8b15aa1f46d2eafa91926c40430dba SHA512 4a4b9dc39de9b3f00eae9b6829136f5d836355d3d719371440f69c33fdddf73636e9faaa8fc35829c64d5c5a61d968ea427267da944c524c22ad08b69fb6f0ff +DIST decorator-4.2.1.tar.gz 33376 BLAKE2B 29a03fb4af1de8c60c5ba4a4b30f59f8b1aa8bbde107b9d5719cc0a084c45b58f7e14ff2046d7247c43d57717db57aea0db52dc068d73a73188a0e022c058cbb SHA512 8a6fc53f830470fe15d4bf9dfe8cea434019aa2e1734e55f873dc617138a6ba75d63ddf50a3fcd21a8f67d9d1b19c35c75149d8cee157e909aff4873093c4e0e diff --git a/dev-python/decorator/decorator-4.2.1.ebuild b/dev-python/decorator/decorator-4.2.1.ebuild new file mode 100644 index 00000000000..cabace0b36c --- /dev/null +++ b/dev-python/decorator/decorator-4.2.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Simplifies the usage of decorators for the average programmer" +HOMEPAGE="https://github.com/micheles/decorator https://pypi.python.org/pypi/decorator" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-macos" +IUSE="doc" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +DOCS=( docs/README.rst ) + +python_test() { + "${PYTHON}" src/tests/test.py || die "Tests fail with ${EPYTHON}" +} + +python_install_all() { + distutils-r1_python_install_all +}