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 E770E59CA3 for ; Sat, 12 Mar 2016 23:40:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E92521C04E; Sat, 12 Mar 2016 23:40:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BCD6B21C04E for ; Sat, 12 Mar 2016 23:40:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6A47733BF41 for ; Sat, 12 Mar 2016 23:40:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CE7116C5 for ; Sat, 12 Mar 2016 23:40:21 +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: <1457826009.62fc27f2328fb506f4cdc8330864023bac1d581c.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/thefuck/Manifest app-shells/thefuck/metadata.xml app-shells/thefuck/thefuck-3.4.ebuild X-VCS-Directories: app-shells/thefuck/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 62fc27f2328fb506f4cdc8330864023bac1d581c X-VCS-Branch: master Date: Sat, 12 Mar 2016 23:40:21 +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: 5c860aea-c806-4ab2-a6dc-e51d33c8fe64 X-Archives-Hash: 2d0fc661b253ed224804773c49a9c25d commit: 62fc27f2328fb506f4cdc8330864023bac1d581c Author: Manuel Rüger gentoo org> AuthorDate: Sat Mar 12 23:40:09 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sat Mar 12 23:40:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62fc27f2 app-shells/thefuck: Initial version Package-Manager: portage-2.2.28 app-shells/thefuck/Manifest | 1 + app-shells/thefuck/metadata.xml | 11 +++++++++++ app-shells/thefuck/thefuck-3.4.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest new file mode 100644 index 0000000..36cee96 --- /dev/null +++ b/app-shells/thefuck/Manifest @@ -0,0 +1 @@ +DIST thefuck-3.4.tar.gz 781871 SHA256 ce98f6219e64b6e9e9f2cad22fa1bac121a5d79f3a530d9b2cb8bc61a629904f SHA512 8d78a91d3320230fbd47bdd79ad352bf7b5c9bc2f7d41bd8382177e650f9e01d1660c0620e443a3bb7e36c193c73ea3aaaab5f2e5bc1b469b8d919602b8c1d4f WHIRLPOOL 44408d18caae4c41e51360cdce720d2514f4288fbc2a70f7894718b2c14caa9c0baa7df3d28501e3421be2ff7e69a7293f2b4822003e1f7cacbaa55a1b1e8b78 diff --git a/app-shells/thefuck/metadata.xml b/app-shells/thefuck/metadata.xml new file mode 100644 index 0000000..f7e2bc9 --- /dev/null +++ b/app-shells/thefuck/metadata.xml @@ -0,0 +1,11 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + + + nvbn/thefuck + + diff --git a/app-shells/thefuck/thefuck-3.4.ebuild b/app-shells/thefuck/thefuck-3.4.ebuild new file mode 100644 index 0000000..d75c92f --- /dev/null +++ b/app-shells/thefuck/thefuck-3.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=(python{2_7,3_4}) + +inherit distutils-r1 + +DESCRIPTION="Magnificent app which corrects your previous console command" +HOMEPAGE="https://github.com/nvbn/thefuck" +SRC_URI="https://github.com/nvbn/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +LICENSE="MIT" +SLOT="0" +IUSE="test" + +RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}] + dev-python/psutil[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + dev-python/decorator[${PYTHON_USEDEP}] + dev-python/colorama[${PYTHON_USEDEP}]" +DEPEND="test? ( ${RDEPEND} + dev-python/pytest[${PYTHON_USEDEP}] ) + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + py.test || die +}