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 5D5DD138334 for ; Fri, 22 Mar 2019 01:03:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 733BDE09C4; Fri, 22 Mar 2019 01:03:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4B4D9E09C4 for ; Fri, 22 Mar 2019 01:03:18 +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 0C4EA335D28 for ; Fri, 22 Mar 2019 01:03:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E8C2754B for ; Fri, 22 Mar 2019 01:03:13 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1553216579.ba1ff672ad7c82800273d8a5787a22a054953664.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/grabbit/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/grabbit/grabbit-0.2.6.ebuild X-VCS-Directories: dev-python/grabbit/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: ba1ff672ad7c82800273d8a5787a22a054953664 X-VCS-Branch: master Date: Fri, 22 Mar 2019 01:03:13 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fdafa667-d3b3-4171-9798-558ab3640679 X-Archives-Hash: cea0ee20f7ba6af41b469641d4783537 commit: ba1ff672ad7c82800273d8a5787a22a054953664 Author: Horea Christian yandex com> AuthorDate: Fri Mar 22 01:02:59 2019 +0000 Commit: Horea Christian gmail com> CommitDate: Fri Mar 22 01:02:59 2019 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ba1ff672 dev-python/grabbit: version bump Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Horea Christian yandex.com> dev-python/grabbit/grabbit-0.2.6.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/dev-python/grabbit/grabbit-0.2.6.ebuild b/dev-python/grabbit/grabbit-0.2.6.ebuild new file mode 100644 index 000000000..009db3338 --- /dev/null +++ b/dev-python/grabbit/grabbit-0.2.6.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="Get grabby with file trees" +HOMEPAGE="https://github.com/grabbles/grabbit" +SRC_URI="https://github.com/grabbles/grabbit/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( >=dev-python/pytest-3.4.1[${PYTHON_USEDEP}] ) + " +RDEPEND="" + +python_test() { + py.test -v || die +}