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 5D22B139694 for ; Mon, 15 May 2017 15:11:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F32AE0C35; Mon, 15 May 2017 15:11:42 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E3A70E0C35 for ; Mon, 15 May 2017 15:11:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9A7D13416CE for ; Mon, 15 May 2017 15:11:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10825745A for ; Mon, 15 May 2017 15:11:39 +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: <1494861083.ce192e3a20a0dfe8b96c3d08d4cd79d920c6fb1e.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fields/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/fields/Manifest dev-python/fields/fields-5.0.0.ebuild dev-python/fields/metadata.xml X-VCS-Directories: dev-python/fields/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: ce192e3a20a0dfe8b96c3d08d4cd79d920c6fb1e X-VCS-Branch: master Date: Mon, 15 May 2017 15:11:39 +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: 0292ff29-ad39-4540-ab9b-4e831f20116a X-Archives-Hash: 9686faa6767fc42b9b5cf398b8dd69af commit: ce192e3a20a0dfe8b96c3d08d4cd79d920c6fb1e Author: Manuel Rüger gentoo org> AuthorDate: Mon May 15 15:10:13 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon May 15 15:11:23 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce192e3a dev-python/fields: Initial version Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-python/fields/Manifest | 1 + dev-python/fields/fields-5.0.0.ebuild | 30 ++++++++++++++++++++++++++++++ dev-python/fields/metadata.xml | 11 +++++++++++ 3 files changed, 42 insertions(+) diff --git a/dev-python/fields/Manifest b/dev-python/fields/Manifest new file mode 100644 index 00000000000..f1044e026dd --- /dev/null +++ b/dev-python/fields/Manifest @@ -0,0 +1 @@ +DIST fields-5.0.0.tar.gz 36232 SHA256 31d4aa03d8d44e35df13c431de35136997f047a924a597d84f7bc209e1be5727 SHA512 3d80b9c6a1d0a43568045fc25422b0db783c84e2e3f2be8b1d41b0150f48fef58736d863d06b4562b29190cd6dc2616829faab8e901b7268ac2e9e63e996180e WHIRLPOOL b6e48218dc5060d565516afc247167ea627ae248eef9622d27ea2100de2fd6055ab719f0d1d2e05c769e45dabf4c2e0e5638e35af77c77179e3564b765b7cbbf diff --git a/dev-python/fields/fields-5.0.0.ebuild b/dev-python/fields/fields-5.0.0.ebuild new file mode 100644 index 00000000000..f9032a554d8 --- /dev/null +++ b/dev-python/fields/fields-5.0.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python{3_4,3_5,3_6} ) +inherit distutils-r1 + +DESCRIPTION="Container class boilerplate killer" +HOMEPAGE="https://github.com/ionelmc/python-fields" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] + dev-python/attrs[${PYTHON_USEDEP}] + dev-python/characteristic[${PYTHON_USEDEP}] )" + +python_prepare_all() { + sed -i -e "/--benchmark-disable/d" setup.cfg || die + rm -rf tests/test_perf.py || die + distutils-r1_python_prepare_all +} + +python_test() { + py.test -vv || die +} diff --git a/dev-python/fields/metadata.xml b/dev-python/fields/metadata.xml new file mode 100644 index 00000000000..8e8da838d64 --- /dev/null +++ b/dev-python/fields/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + ionelmc/python-fields + +