diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2016-03-25 15:48:22 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2016-03-25 16:00:28 +0100 |
commit | 512cef79dfb7d092e5034e1780b69041542363e0 (patch) | |
tree | 02a272ca4d16a99d8734a91e0662d6bd03fcbd7c /app-shells/thefuck | |
parent | sys-apps/systemd: Enable systemd-coredump by default (diff) | |
download | gentoo-512cef79dfb7d092e5034e1780b69041542363e0.tar.gz gentoo-512cef79dfb7d092e5034e1780b69041542363e0.tar.bz2 gentoo-512cef79dfb7d092e5034e1780b69041542363e0.zip |
app-shells/thefuck: Version bump to 3.7
Package-Manager: portage-2.2.28
Diffstat (limited to 'app-shells/thefuck')
-rw-r--r-- | app-shells/thefuck/Manifest | 1 | ||||
-rw-r--r-- | app-shells/thefuck/thefuck-3.7.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/app-shells/thefuck/Manifest b/app-shells/thefuck/Manifest index 1429396ddb56..ac408f7f924a 100644 --- a/app-shells/thefuck/Manifest +++ b/app-shells/thefuck/Manifest @@ -1 +1,2 @@ DIST thefuck-3.6.tar.gz 782923 SHA256 a83e2e3ff65b36a7e0d3330e853610c0da9cd2ffd5a001d9e51ad6146c558674 SHA512 630825f2a635fa8039df2b71e3a3d1c95280f48b1277f31f010a8c4adf1cd08ddbd6cff1ffae19856f27585f36c473d3c70eb30ca8e5e4cf8b159705398793bf WHIRLPOOL 17fc409d6114fb89527251888c40e05731932f192dedaefd33cd18e64c2b46980ad8a1c14a6f3bca02cfa223cde61216e2051afc458cca195919e3da94d08d91 +DIST thefuck-3.7.tar.gz 783470 SHA256 6e7efdc51baa5bfeecf38fc1e6ecdaf07b90168a6ced79cbf50fe6ff0e0adb1e SHA512 736a0656e9bce2efdfabdede6a3d4e11b9ced324ffe6435a16475c0d5e0a04b4240be66aebdd5512d04b32a2a6c91be929e36ddcf3a7d62e59f195df33505e6c WHIRLPOOL dd901df50c767f08b98d1a4e3fc1ef086a0961911976a7c1fb6f121ea0d4df9512955ee8c3c5106760045f60d7cbb168b07be0e348db53a584e876194630e574 diff --git a/app-shells/thefuck/thefuck-3.7.ebuild b/app-shells/thefuck/thefuck-3.7.ebuild new file mode 100644 index 000000000000..15c70cff400a --- /dev/null +++ b/app-shells/thefuck/thefuck-3.7.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 +} |