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 D9A0E59CA3 for ; Sun, 13 Mar 2016 11:40:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2910921C194; Sun, 13 Mar 2016 11:40:09 +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 95DF021C194 for ; Sun, 13 Mar 2016 11:40:08 +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 4FD05340924 for ; Sun, 13 Mar 2016 11:40:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6EC22322 for ; Sun, 13 Mar 2016 11:40:05 +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: <1457869178.aa66ef2b132513d6afc9691191c56389ca5ae7e6.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/thefuck-3.5.ebuild X-VCS-Directories: app-shells/thefuck/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: aa66ef2b132513d6afc9691191c56389ca5ae7e6 X-VCS-Branch: master Date: Sun, 13 Mar 2016 11:40:05 +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: c32288cc-e67a-4863-9c09-560e516477df X-Archives-Hash: 6bd5c74b4e17a4335e13687c5a55a184 commit: aa66ef2b132513d6afc9691191c56389ca5ae7e6 Author: Manuel Rüger gentoo org> AuthorDate: Sun Mar 13 11:39:38 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sun Mar 13 11:39:38 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa66ef2b app-shells/thefuck: Version bump Package-Manager: portage-2.2.28 app-shells/thefuck/Manifest | 1 + app-shells/thefuck/thefuck-3.5.ebuild | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest index 36cee96..b7ac14b 100644 --- a/app-shells/thefuck/Manifest +++ b/app-shells/thefuck/Manifest @@ -1 +1,2 @@ DIST thefuck-3.4.tar.gz 781871 SHA256 ce98f6219e64b6e9e9f2cad22fa1bac121a5d79f3a530d9b2cb8bc61a629904f SHA512 8d78a91d3320230fbd47bdd79ad352bf7b5c9bc2f7d41bd8382177e650f9e01d1660c0620e443a3bb7e36c193c73ea3aaaab5f2e5bc1b469b8d919602b8c1d4f WHIRLPOOL 44408d18caae4c41e51360cdce720d2514f4288fbc2a70f7894718b2c14caa9c0baa7df3d28501e3421be2ff7e69a7293f2b4822003e1f7cacbaa55a1b1e8b78 +DIST thefuck-3.5.tar.gz 782640 SHA256 eaa6b6466634ab4c87506a1404871af5bfd013043157b335165a63da3b14d90e SHA512 b1d5c542e25dc88ddceef98cd067f3bd48023c4ca5ee33ea61c76ad089ca85d0f440b212633ad99f9e7caa2ca56da8ba236c481cacfb50fd07dec44e896a0a71 WHIRLPOOL dd8e7bde96b45e61874f519db52550f82aa269a1e0df94271bb58bd6605e1165e1e6e8682c257ca8129ebff2955c0014b71a0191a360ad035d4de2e17fab4ba8 diff --git a/app-shells/thefuck/thefuck-3.5.ebuild b/app-shells/thefuck/thefuck-3.5.ebuild new file mode 100644 index 0000000..15c70cf --- /dev/null +++ b/app-shells/thefuck/thefuck-3.5.ebuild @@ -0,0 +1,35 @@ +# 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}]" + +src_prepare() { + sed -i -e "/import pip/s/^/#/" -e "/pip.__version__/,+3 s/^/#/" setup.py || die + distutils-r1_src_prepare +} + +python_test() { + py.test || die +}